Forbid marking an identity column as nullable.
Tom Lane <tgl@sss.pgh.pa.us>
Forbid marking an identity column as nullable. GENERATED ALWAYS AS IDENTITY implies NOT NULL, but the code failed to complain if you overrode that with "GENERATED ALWAYS AS IDENTITY NULL". One might think the old behavior was a feature, but it was inconsistent because the outcome varied depending on the order of the clauses, so it seems to have been just an oversight. Per bug #16913 from Pavel Boev. Back-patch to v10 where identity columns were introduced. Vik Fearing (minor tweaks by me) Discussion: https://postgr.es/m/16913-3b5198410f67d8c6@postgresql.org
Files
| Path | Change | +/− |
|---|---|---|
| doc/src/sgml/ref/create_table.sgml | modified | +1 −0 |
| src/backend/parser/parse_utilcmd.c | modified | +10 −0 |
| src/test/regress/expected/identity.out | modified | +13 −0 |
| src/test/regress/sql/identity.sql | modified | +9 −0 |
Documentation touched
Discussion
- BUG #16913: GENERATED AS IDENTITY column nullability is affected by order of column properties 11 messages · 2021-03-04 → 2021-05-15