From: Bruce Momjian Date: Tue, 16 Sep 2025 15:48:48 +0000 (-0400) Subject: doc PG 18 relnotes: add mention of temporal foreign key constr. X-Git-Tag: REL_18_0~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dad1e259dfa95edd07bf9a890fbb103dc35057ce;p=thirdparty%2Fpostgresql.git doc PG 18 relnotes: add mention of temporal foreign key constr. Reported-by: Yugo Nagata Author: Yugo Nagata Discussion: https://postgr.es/m/20250901200148.baca5744b27419c87c323362@sraoss.co.jp Backpatch-through: 18 only --- diff --git a/doc/src/sgml/release-18.sgml b/doc/src/sgml/release-18.sgml index 874f3113ccb..75cf99b6390 100644 --- a/doc/src/sgml/release-18.sgml +++ b/doc/src/sgml/release-18.sgml @@ -1891,21 +1891,27 @@ Author: Thomas Munro Allow the specification of non-overlapping PRIMARY - KEY and UNIQUE + KEY, + UNIQUE, and + foreign key constraints (Paul A. Jungwirth) § + § - This is specified by WITHOUT OVERLAPS on the - last specified column. + This is specified by WITHOUT OVERLAPS for + PRIMARY KEY and UNIQUE, and by + PERIOD for foreign keys, all applied to the last + specified column.