From: Bruce Momjian Date: Fri, 2 Jul 2021 18:46:31 +0000 (-0400) Subject: doc: PG 14 relnotes, mention CONCURRENTLY improvements X-Git-Tag: REL_14_BETA3~127 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=56d467a07de1c203cfe78fea69cd8326fa297e23;p=thirdparty%2Fpostgresql.git doc: PG 14 relnotes, mention CONCURRENTLY improvements Add items for vacuum not having to wait for CONCURRENTLY, and CONCURRENTLY not having to wait for other CONCURRENTLY operations. Reported-by: Simon Riggs Discussion: https://postgr.es/m/CANbhV-EMM4nf7Ys-Yae_kY25dXT_3eiOXke2+yw44jgy+4jNsA@mail.gmail.com Backpatch-through: 14 only --- diff --git a/doc/src/sgml/release-14.sgml b/doc/src/sgml/release-14.sgml index 03ee36867a5..4db156c62dc 100644 --- a/doc/src/sgml/release-14.sgml +++ b/doc/src/sgml/release-14.sgml @@ -744,6 +744,28 @@ Author: Peter Geoghegan + + + Allow vacuum to be more aggressive in removing dead rows during + minimal-locking index operations (Álvaro Herrera) + + + + Specifically, CREATE INDEX CONCURRENTLY and + REINDEX CONCURRENTLY no longer limit the dead + row removal of other relations. + + + + + @@ -2283,6 +2305,23 @@ Author: Michael Paquier + + + + + Allow index commands using CONCURRENTLY to + avoid waiting for the completion of other operations using + CONCURRENTLY (Álvaro Herrera) + + +