diff --git a/doc/src/sgml/release-19.sgml b/doc/src/sgml/release-19.sgml
index 0266d6a98e0..86f74df125c 100644
--- a/doc/src/sgml/release-19.sgml
+++ b/doc/src/sgml/release-19.sgml
@@ -6,7 +6,7 @@
Release date:
- 2026-??-??, AS OF 2026-09-14
+ 2026-??-??, AS OF 2026-09-18
@@ -20,58 +20,56 @@
- A new REPACK command
- that reclaims disk space and reorganizes table contents, combining the
- functionality of the existing VACUUM FULL and
- CLUSTER commands. Its CONCURRENTLY
- option allows repacking without blocking reads and writes to the table.
+ New REPACK command
+ that reclaims disk space and reorganizes table contents, which can help
+ increase query performance. REPACK CONCURRENTLY
+ allows repacking without blocking reads and writes to the table.
- Logical replication now
- replicates sequence values
- and can be enabled without a server restart when
- is set to replica.
+ pg_plan_advice
+ extension for controlling query planner decisions and
+ pg_stash_advice
+ extension that applies plan advice automatically based on the query.
- Autovacuum can now use
- parallel worker processes
- to vacuum a table's indexes, and a
- new scoring system prioritizes
- the tables that most need vacuuming or analyzing.
+ Better performance in many areas, including automatic scaling of the
+ number of I/O worker processes, quicker foreign-key checks, and further
+ planning and execution optimizations.
- A new WAIT
- command that waits until a standby has replayed changes up to a chosen
- point, thereby supporting read-your-writes query patterns
- on standbys.
+ Logical replication and can now be enabled without a server restart when
+ is set to replica.
- A new
- pg_plan_advice
- extension for stabilizing and controlling the query planner's decisions,
- and a companion
- pg_stash_advice
- extension that applies this advice automatically based on the query.
+ Logical replication of
+ sequence values.
- Better performance in many areas, including automatic scaling of the
- number of I/O worker processes, quicker foreign-key checks, and further
- planning and execution optimizations.
+ Support read-your-writes on standbys with the new
+ WAIT FOR command.
+
+
+
+
+
+ Parallel autovacuum of table indexes
+ and
+ user-defined prioritization of autovacuuming.