pgsql: Fix ALTER DOMAIN NOT NULL syntax

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix ALTER DOMAIN NOT NULL syntax
Date: 2024-04-15 06:39:19
Message-ID: E1rwFzr-0027bD-Bj@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix ALTER DOMAIN NOT NULL syntax

This addresses a few problems with commit e5da0fe3c22 ("Catalog domain
not-null constraints").

In CREATE DOMAIN, a NOT NULL constraint looks like

CREATE DOMAIN d1 AS int [ CONSTRAINT conname ] NOT NULL

(Before e5da0fe3c22, the constraint name was accepted but ignored.)

But in ALTER DOMAIN, a NOT NULL constraint looks like

ALTER DOMAIN d1 ADD [ CONSTRAINT conname ] NOT NULL VALUE

where VALUE is where for a table constraint the column name would be.
(This works as of e5da0fe3c22. Before e5da0fe3c22, this syntax
resulted in an internal error.)

But for domains, this latter syntax is confusing and needlessly
inconsistent between CREATE and ALTER. So this changes it to just

ALTER DOMAIN d1 ADD [ CONSTRAINT conname ] NOT NULL

(None of these syntaxes are per SQL standard; we are just living with
the bits of inconsistency that have built up over time.)

In passing, this also changes the psql \dD output to not show not-null
constraints in the column "Check", since it's already shown in the
column "Nullable". This has also been off since e5da0fe3c22.

Reviewed-by: jian he <jian(dot)universality(at)gmail(dot)com>
Discussion: https://www.postgresql.org/message-id/flat/9ec24d7b-633d-463a-84c6-7acff769c9e8%40eisentraut.org

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/9895b35cb88edc30b836661dbc26d7665716b5a0

Modified Files
--------------
doc/src/sgml/ref/create_domain.sgml | 17 ++++++++--
src/backend/parser/gram.y | 60 ++++++++++++++++++++++++++++++++++--
src/backend/utils/adt/ruleutils.c | 2 +-
src/bin/psql/describe.c | 2 +-
src/test/regress/expected/domain.out | 22 ++++++++++---
src/test/regress/sql/domain.sql | 12 +++++---
6 files changed, 99 insertions(+), 16 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2024-04-15 07:34:32 pgsql: psql: Make output of \dD more stable
Previous Message Heikki Linnakangas 2024-04-14 20:04:42 pgsql: Put back initialization of 'sslmode', to silence Coverity