From: Bruce Momjian Date: Tue, 5 May 2020 17:18:05 +0000 (-0400) Subject: doc: PG 13 retnote adjustments X-Git-Url: http://git.postgresql.org/gitweb/-?a=commitdiff_plain;h=ab3f2f45d28235ee60ac2426f2282f401a0b0c12;p=users%2Frhaas%2Fpostgres.git doc: PG 13 retnote adjustments Reported-by: Justin Pryzby --- diff --git a/doc/src/sgml/release-13.sgml b/doc/src/sgml/release-13.sgml index 86787d9c38..9b93f1f325 100644 --- a/doc/src/sgml/release-13.sgml +++ b/doc/src/sgml/release-13.sgml @@ -6,7 +6,7 @@ Release date: - 2020-05-03 + 2020-XX-XX, CURRENT AS OF 2020-05-03 @@ -284,7 +284,7 @@ Allow BEFORE row-level triggers on partitioned tables (Álvaro Herrera) -These triggers cannot change the destination partition. +These triggers "cannot change which partition is the destination. @@ -532,11 +532,11 @@ Author: Tomas Vondra --> -Allow incremental sorting (James Coleman, Alexander Korotkov) +Implement incremental sorting (James Coleman, Alexander Korotkov) -If a result is already sorted by several keys, this allows for batch sorting of additional trailing keys because the previous keys are already equal. This is controlled by enable_incrementalsort. +If a result is already sorted by several leading keys, this allows for batch sorting of additional trailing keys because the previous keys are already equal. This is controlled by enable_incrementalsort. @@ -566,7 +566,7 @@ Allow hash aggregation to use disk storage for large aggregation result sets (Je -Previously, hash aggregation was not used if it was expected to use more than work_mem memory. This is controlled by enable_hashagg_disk. +Previously, hash aggregation was avoided if it was expected to use more than work_mem memory. This is controlled by enable_hashagg_disk. @@ -599,7 +599,7 @@ Allow inserts to trigger autovacuum activity (Laurenz Albe, Darafei Praliaskousk -This new behavior sets pages as all-visible, allowing for index-only scans, and reduces the work necessary when the table needs to be frozen. +This new behavior allows pages to be set as all-visible, which then allows index-only scans, and reduces the work necessary when the table needs to be frozen. @@ -627,7 +627,7 @@ Allow skipping of WAL for new tables and indexes if wal_level is 'minimal' (Noah -This is controlled by GUC wal_skip_threshold. +The WAL write amount where this happens is controlled by wal_skip_threshold. @@ -651,7 +651,7 @@ Author: Fujii Masao --> -Improve the performance of replay of DROP DATABASE commands that use many tablespaces (Fujii Masao) +Improve the performance when replaying DROP DATABASE commands when many tablespaces are in use (Fujii Masao) @@ -663,7 +663,7 @@ Author: Fujii Masao --> -Improve performance for truncation of very larger relations (Kirk Jamison) +Improve performance for truncation of very large relations (Kirk Jamison) @@ -1147,7 +1147,7 @@ Allow streaming replication configuration settings to be changed by reload (Serg -Previously, server restart was required to change primary_conninfo and primary_slot_name. +Previously, a server restart was required to change primary_conninfo and primary_slot_name. @@ -1354,7 +1354,7 @@ Author: Tom Lane --> -Fix bugs in ALTER TABLE where later clauses overlap changes made by earlier clauses in the same command (Tom Lane) +Fix bugs in ALTER TABLE when later clauses overlap changes made by earlier clauses in the same command (Tom Lane) @@ -1565,7 +1565,7 @@ Add alternate version of jsonb_set with special NULL handling (Andrew Dunstan) -The new function, jsonb_set_lax(), allows null new values to either set the specified key to JSON null, delete the key, raise exception, or ignore operation. +The new function, jsonb_set_lax(), allows null new values to either set the specified key to JSON null, delete the key, raise exception, or ignore the operation. IS 'return_target' CLEAR? @@ -1967,7 +1967,7 @@ Allow \g and \gx to change any pset output options for a single command (Tom Lan -This makes \gx equivalent to \g (expanded=on). +This allows syntax like \g (expand=on), which is equivalent to \gx. @@ -2181,7 +2181,7 @@ Allow pg_rewind to use the target cluster's restore_command to retrieve needed W -This is enable using the -c/--restore-target-wal option. +This is enabled using the -c/--restore-target-wal option. @@ -2293,7 +2293,7 @@ Remove --adduser and --no-adduser from createuser (Alexander Lakhin) -These long-supported options for this are called --superuser and --no-superuser. +The long-supported options for this are called --superuser and --no-superuser.