From: Tom Lane Date: Fri, 14 May 2021 21:36:20 +0000 (-0400) Subject: Doc: correct erroneous entry in this week's minor release notes. X-Git-Tag: REL_11_13~139 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=037cc13f413de8d1d7e332e441d5d71451f2d336;p=thirdparty%2Fpostgresql.git 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 --- diff --git a/doc/src/sgml/release-11.sgml b/doc/src/sgml/release-11.sgml index c3beb9fd0c6..8beea2fdba9 100644 --- a/doc/src/sgml/release-11.sgml +++ b/doc/src/sgml/release-11.sgml @@ -172,7 +172,7 @@ Branch: REL_10_STABLE [e5794cd59] 2021-03-12 11:08:42 -0500 - GENERATED ALWAYS AS IDENTITY implies NOT + GENERATED ... AS IDENTITY implies NOT NULL, so don't allow it to be combined with an explicit NULL specification.