From 136b53dc06490e15e0696bfdad2fbde1bf81e686 Mon Sep 17 00:00:00 2001 From: Nathan Bossart Date: Wed, 1 Jul 2026 16:33:08 -0500 Subject: [PATCH v2 1/1] Add list of major features to the v19 release notes. --- doc/src/sgml/release-19.sgml | 79 +++++++++++++++++++++++++++++++++++- 1 file changed, 78 insertions(+), 1 deletion(-) diff --git a/doc/src/sgml/release-19.sgml b/doc/src/sgml/release-19.sgml index d8d3758d5ba..7065a0be549 100644 --- a/doc/src/sgml/release-19.sgml +++ b/doc/src/sgml/release-19.sgml @@ -19,7 +19,84 @@ - fill in later + + Support for + property graph queries + (SQL/PGQ). + + + + + + 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. + + + + + + Logical replication now + replicates sequence values + and can be enabled without a server restart when + is set to replica. + + + + + + Autovacuum can now use + multiple worker processes + to vacuum a single table in parallel, and a + new scoring system prioritizes + the tables that most need vacuuming or analyzing. + + + + + + Data checksums can now be + enabled or disabled while the database server is running. + + + + + + A new WAIT FOR + command that lets an application pause until a standby has replayed + changes up to a chosen point, thereby supporting + read-your-writes query patterns on standbys. + + + + + + Support for temporal updates and deletes via the new + FOR PORTION OF + clause. + + + + + + A new + pg_plan_advice + extension for stabilizing and controlling the query planner's decisions, + together with the companion + pg_stash_advice + extension that applies this advice automatically based on the query. + + + + + + Faster 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. + -- 2.50.1 (Apple Git-155)