From d9e8dea799c68af4f1703e5daa9149497da688df Mon Sep 17 00:00:00 2001 From: Nathan Bossart Date: Sat, 30 Aug 2025 22:02:10 -0500 Subject: [PATCH v1 1/1] add major features to v18 release notes --- doc/src/sgml/release-18.sgml | 66 +++++++++++++++++++++++++++++++++++- 1 file changed, 65 insertions(+), 1 deletion(-) diff --git a/doc/src/sgml/release-18.sgml b/doc/src/sgml/release-18.sgml index 874f3113ccb..ed7131169e6 100644 --- a/doc/src/sgml/release-18.sgml +++ b/doc/src/sgml/release-18.sgml @@ -21,7 +21,71 @@ - (to be completed) + New asynchronous I/O subsystem that can improve performance of sequential + scans, bitmap heap scans, and vacuums. + + + + + + Support for "skip scan" lookups on + multicolumn B-tree indexes. + + + + + + Various improvements to + pg_upgrade, + such as carrying over optimizer statistics, parallelizing cluster checks, + and transferring database files by swapping directories. + + + + + + Virtual generated columns + that compute their values just-in-time during query execution. + + + + + + OLD and NEW support for + RETURNING clauses + in , , + , and commands. + + + + + + Support for UUIDv7 for generating timestamp-ordered + UUIDs. + + + + + + Temporal constraints, or constraints over ranges, for + PRIMARY KEY and + UNIQUE constraints via + the WITHOUT OVERLAPS clause, and for + FOREIGN KEY + constraints via the PERIOD clause. + + + + + + OAuth authentication. + + + + + + Additional details in , including + information about buffer accesses, index lookups, CPU, and WAL. -- 2.39.5 (Apple Git-154)