From 71309e81cd3a31bc953e178c80abc04ecaa035b2 Mon Sep 17 00:00:00 2001 From: "David G. Johnston" Date: Fri, 3 Apr 2026 10:05:39 -0700 Subject: [PATCH v1 1/2] pgsql: doc: Fix malformed sgml element nesting for primary key In CREATE TABLE, the primary key description had malformed sgml element nesting. The INCLUDE clause was placed outside the enclosing literal element. Fix the two sgml markup issues. --- doc/src/sgml/ref/create_table.sgml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index 80829b23945..4c3808cdb45 100644 --- a/doc/src/sgml/ref/create_table.sgml +++ b/doc/src/sgml/ref/create_table.sgml @@ -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