pgsql: Add temporal FOREIGN KEY contraints - Mailing list pgsql-committers

From Peter Eisentraut
Subject pgsql: Add temporal FOREIGN KEY contraints
Date
Msg-id E1sqUdu-001Uaj-UQ@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Add temporal FOREIGN KEY contraints

Add PERIOD clause to foreign key constraint definitions.  This is
supported for range and multirange types.  Temporal foreign keys check
for range containment instead of equality.

This feature matches the behavior of the SQL standard temporal foreign
keys, but it works on PostgreSQL's native ranges instead of SQL's
"periods", which don't exist in PostgreSQL (yet).

Reference actions ON {UPDATE,DELETE} {CASCADE,SET NULL,SET DEFAULT}
are not supported yet.

(previously committed as 34768ee3616, reverted by 8aee330af55; this is
essentially unchanged from those)

Author: Paul A. Jungwirth <pj@illuminatedcomputing.com>
Reviewed-by: Peter Eisentraut <peter@eisentraut.org>
Reviewed-by: jian he <jian.universality@gmail.com>
Discussion:
https://www.postgresql.org/message-id/flat/CA+renyUApHgSZF9-nd-a0+OPGharLQLO=mDHcY4_qQ0+noCUVg@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/89f908a6d0ac1337c868625008c9598487d184e7

Modified Files
--------------
contrib/btree_gist/expected/without_overlaps.out |   48 +
contrib/btree_gist/sql/without_overlaps.sql      |   28 +
doc/src/sgml/catalogs.sgml                       |    3 +-
doc/src/sgml/ref/create_table.sgml               |   45 +-
src/backend/catalog/pg_constraint.c              |   58 +
src/backend/commands/indexcmds.c                 |   31 +-
src/backend/commands/tablecmds.c                 |  226 +++-
src/backend/parser/gram.y                        |   45 +-
src/backend/utils/adt/ri_triggers.c              |  169 ++-
src/backend/utils/adt/ruleutils.c                |   17 +-
src/include/catalog/pg_constraint.h              |   21 +-
src/include/commands/defrem.h                    |    2 +-
src/include/nodes/parsenodes.h                   |    2 +
src/include/parser/kwlist.h                      |    1 +
src/test/regress/expected/without_overlaps.out   | 1283 ++++++++++++++++++++++
src/test/regress/sql/without_overlaps.sql        | 1234 +++++++++++++++++++++
16 files changed, 3105 insertions(+), 108 deletions(-)


pgsql-committers by date:

Previous
From: Tatsuo Ishii
Date:
Subject: pgsql: Add memory/disk usage for Window aggregate nodes in EXPLAIN.
Next
From: Peter Geoghegan
Date:
Subject: pgsql: Avoid parallel nbtree index scan hangs with SAOPs.