From 4613f027c27df4889c0a6973f0e45db2ae3a521f Mon Sep 17 00:00:00 2001 From: "David G. Johnston" Date: Fri, 3 Apr 2026 10:28:31 -0700 Subject: [PATCH 1/2] pgsql: doc: Fix malformed sgml element nesting for unique and primary key In CREATE TABLE, the unique and primary key descriptions had malformed sgml element nesting. The INCLUDE clause was placed outside the enclosing literal element. Fix the four sgml markup issues. --- doc/src/sgml/ref/create_table.sgml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index 80829b23945..943420663e2 100644 --- a/doc/src/sgml/ref/create_table.sgml +++ b/doc/src/sgml/ref/create_table.sgml @@ -1010,8 +1010,8 @@ WITH ( MODULUS numeric_literal, REM UNIQUE [ NULLS [ NOT ] DISTINCT ] (column constraint) - UNIQUE [ NULLS [ NOT ] DISTINCT ] ( column_name [, ... ] [, column_name WITHOUT OVERLAPS ] ) - INCLUDE ( column_name [, ...]) (table constraint) + UNIQUE [ NULLS [ NOT ] DISTINCT ] ( column_name [, ... ] [, column_name WITHOUT OVERLAPS ] ) + INCLUDE ( column_name [, ...]) (table constraint) @@ -1088,8 +1088,8 @@ WITH ( MODULUS numeric_literal, REM PRIMARY KEY (column constraint) - PRIMARY KEY ( column_name [, ... ] [, column_name WITHOUT OVERLAPS ] ) - INCLUDE ( column_name [, ...]) (table constraint) + PRIMARY KEY ( column_name [, ... ] [, column_name WITHOUT OVERLAPS ] ) + INCLUDE ( column_name [, ...]) (table constraint) The PRIMARY KEY constraint specifies that a column or -- 2.43.0