-
Notifications
You must be signed in to change notification settings - Fork 4k
Open
Labels
A-sql-pgcompatSemantic compatibility with PostgreSQLSemantic compatibility with PostgreSQLC-enhancementSolution expected to add code/behavior + preserve backward-compat (pg compat issues are exception)Solution expected to add code/behavior + preserve backward-compat (pg compat issues are exception)O-communityOriginated from the communityOriginated from the communityT-sql-queriesSQL Queries TeamSQL Queries Team
Description
Postgres 15 release added support for NULLS NOT DISTINCT.
For instance:
CREATE TABLE IF NOT EXISTS usage_tracking4 (
a INT PRIMARY KEY,
b INT,
UNIQUE NULLS NOT DISTINCT (a, b)
);
this currently fails because of a syntax error, but works fine on Postgres proper.
I tried to see if there was an on-going FR for this, but did not find it.
Jira issue: CRDB-34239
steeling and bbrk24
Metadata
Metadata
Assignees
Labels
A-sql-pgcompatSemantic compatibility with PostgreSQLSemantic compatibility with PostgreSQLC-enhancementSolution expected to add code/behavior + preserve backward-compat (pg compat issues are exception)Solution expected to add code/behavior + preserve backward-compat (pg compat issues are exception)O-communityOriginated from the communityOriginated from the communityT-sql-queriesSQL Queries TeamSQL Queries Team
Type
Projects
Status
Backlog