diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2021-05-14 17:36:20 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2021-05-14 17:36:20 -0400 |
commit | e5f982156952c0a9e9380f07a204e808f1fe1fbf (patch) | |
tree | 02a3d875cf61ce27eef159fc9f2570a132a215bc /doc/src | |
parent | e87a0d2e0aa5a78fea8d672c6883b78124873d6e (diff) |
Doc: correct erroneous entry in this week's minor release notes.
The patch to disallow a NULL specification in combination with
GENERATED ... AS IDENTITY applied to both ALWAYS and BY DEFAULT
variants of that clause, not only the former.
Noted by Shay Rojansky.
Discussion: https://postgr.es/m/CADT4RqAwD3A=RvGiQU9AiTK-6VeuXcycwPHmJPv_OBCJFYOEww@mail.gmail.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/release-10.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/release-10.sgml b/doc/src/sgml/release-10.sgml index 77da2dcd3e8..29de0b7fbfa 100644 --- a/doc/src/sgml/release-10.sgml +++ b/doc/src/sgml/release-10.sgml @@ -110,7 +110,7 @@ Branch: REL_10_STABLE [e5794cd59] 2021-03-12 11:08:42 -0500 </para> <para> - <literal>GENERATED ALWAYS AS IDENTITY</literal> implies <literal>NOT + <literal>GENERATED ... AS IDENTITY</literal> implies <literal>NOT NULL</literal>, so don't allow it to be combined with an explicit <literal>NULL</literal> specification. </para> |