From eb77a521996f6b7900dc0dfe6346f7e3c88455bb Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sun, 7 Jun 2026 23:27:28 -0400 Subject: [PATCH] doc PG 19 relnotes: improve awkward or confusing wording MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reported-by: Álvaro Herrera Discussion: https://postgr.es/m/aiQPgZtALNqj4npv@alvherre.pgsql --- doc/src/sgml/release-19.sgml | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/doc/src/sgml/release-19.sgml b/doc/src/sgml/release-19.sgml index ee7c7d1a3f4..0f8542333c2 100644 --- a/doc/src/sgml/release-19.sgml +++ b/doc/src/sgml/release-19.sgml @@ -120,12 +120,12 @@ Author: Andrew Dunstan -Prevent carriage returns and line feeds in database, role, and tablespace names (Mahendra Singh Thalor) +Disallow carriage returns and line feeds in database, role, and tablespace names (Mahendra Singh Thalor) § -This was changed to avoid security problems. pg_upgrade will also disallow upgrading of clusters that use such names. +pg_upgrade will also disallow upgrading of clusters that use such names. This was changed to avoid security problems. @@ -144,8 +144,7 @@ Change the default index opclasses for -The inet/cidr opclasses are broken because they can exclude rows that should be returned. pg_upgrade will fail to upgrade if inet/cidr indexes exist in the old -server. +The inet/cidr opclasses are broken because they can exclude rows that should be returned. pg_upgrade will disallow upgrading of clusters with inet/cidr indexes. @@ -688,13 +687,13 @@ Author: Masahiko Sawada -Allow autovacuum to use parallel vacuum workers (Daniil Davydov) +Allow autovacuum to use parallel autovacuum workers (Daniil Davydov) § § -This is enabled via server variable autovacuum_max_parallel_workers and per-table storage parameter autovacuum_parallel_workers. +The maximum number of workers is controlled by server variable autovacuum_max_parallel_workers and per-table storage parameter autovacuum_parallel_workers. @@ -1160,12 +1159,12 @@ Author: Peter Eisentraut -Add server variable log_autoanalyze_min_duration to log long-running autoanalyze operations (Shinya Kato) +Add server variable log_autoanalyze_min_duration to log long-running analyze operations by autovacuum operations (Shinya Kato) § -Server variable log_autovacuum_min_duration now only controls logging of autovacuum operations. +Server variable log_autovacuum_min_duration now only controls logging of vacuum operations by autovacuum. @@ -1220,7 +1219,7 @@ Author: Michael Paquier -Add WAL full-page write bytes reporting to VACUUM and ANALYZE logging (Shinya Kato) +Add reporting of WAL full-page write bytes to VACUUM and ANALYZE logging (Shinya Kato) § @@ -1312,7 +1311,7 @@ Allow online enabling and disabl -Previously the checksum status could only be set at initialization and changed only while the cluster was offline using pg_checksums. +Previously the checksum status could only be changed while the cluster was offline using pg_checksums. @@ -1323,7 +1322,7 @@ Author: Nathan Bossart -Add scoring system to control the order that tables are autovacuumed (Nathan Bossart) +Add scoring system to control the order that tables are processed by autovacuum (Nathan Bossart) § @@ -1394,6 +1393,10 @@ Author: Michael Paquier Allow background workers to be configured to terminate before database-level operations (Aya Iwata) § + + +This allows database-level operations to complete more quickly since blocking background workers can now be terminated. +