From b7e4529a99799f13ce4b701d19b2f625b548f4ac Mon Sep 17 00:00:00 2001 From: Nathan Bossart Date: Thu, 18 Sep 2025 14:01:23 -0500 Subject: [PATCH v3 1/1] add major features to v18 release notes --- doc/src/sgml/release-18.sgml | 60 +++++++++++++++++++++++++++++++++++- 1 file changed, 59 insertions(+), 1 deletion(-) diff --git a/doc/src/sgml/release-18.sgml b/doc/src/sgml/release-18.sgml index 46b4787a191..f3f44552c70 100644 --- a/doc/src/sgml/release-18.sgml +++ b/doc/src/sgml/release-18.sgml @@ -21,7 +21,65 @@ - (to be completed) + An asynchronous I/O subsystem (AIO) that can improve performance of + of sequential scans, bitmap heap scans, vacuums, and other operations. + + + + + + pg_upgrade + now maintains optimizer statistics through upgrade. + + + + + + Support for "skip scan" lookups that allow + multicolumn B-tree indexes + to be used in more cases. + + + + + + uuidv7() + function for generating timestamp-ordered + UUIDs. + + + + + + Virtual + generated columns + that compute their values during read operations. This is now the default + for generated columns. + + + + + + OAuth authentication support. + + + + + + OLD and NEW support for + RETURNING clauses + in , , + , and commands. + + + + + + Temporal constraints, or constraints over ranges, for + PRIMARY KEY, + UNIQUE, and + FOREIGN KEY + constraints. -- 2.39.5 (Apple Git-154)