diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2024-03-20 09:29:08 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2024-03-20 10:05:37 +0100 |
commit | e5da0fe3c22b34c4433f1729e88495554b5331ed (patch) | |
tree | fa99ee64f20e482db38cf3c45d849510a9e7507a /src/backend/utils/cache | |
parent | c9c260decd239159277c1baad9d929ebcdf2491e (diff) | |
download | postgresql-e5da0fe3c22b34c4433f1729e88495554b5331ed.tar.gz postgresql-e5da0fe3c22b34c4433f1729e88495554b5331ed.zip |
Catalog domain not-null constraints
This applies the explicit catalog representation of not-null
constraints introduced by b0e96f3119 for table constraints also to
domain not-null constraints.
Reviewed-by: Aleksander Alekseev <aleksander@timescale.com>
Reviewed-by: jian he <jian.universality@gmail.com>
Discussion: https://www.postgresql.org/message-id/flat/9ec24d7b-633d-463a-84c6-7acff769c9e8%40eisentraut.org
Diffstat (limited to 'src/backend/utils/cache')
-rw-r--r-- | src/backend/utils/cache/typcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/cache/typcache.c b/src/backend/utils/cache/typcache.c index d86c3b06fa0..aa4720cb598 100644 --- a/src/backend/utils/cache/typcache.c +++ b/src/backend/utils/cache/typcache.c @@ -1071,7 +1071,7 @@ load_domaintype_info(TypeCacheEntry *typentry) Expr *check_expr; DomainConstraintState *r; - /* Ignore non-CHECK constraints (presently, shouldn't be any) */ + /* Ignore non-CHECK constraints */ if (c->contype != CONSTRAINT_CHECK) continue; |