From: Tom Lane Date: Fri, 14 Nov 2003 22:56:25 +0000 (+0000) Subject: Repair error in syntax documentation for CREATE TABLE: one does not put X-Git-Tag: REL7_4~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d36fd3c0999a2301cede1e89ce69d626425738a3;p=postgresql Repair error in syntax documentation for CREATE TABLE: one does not put a comma between multiple column_constraint's for a single column. Per report from Tomislaw Kitynski. --- diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index 102c712a13..29dd2134aa 100644 --- a/doc/src/sgml/ref/create_table.sgml +++ b/doc/src/sgml/ref/create_table.sgml @@ -1,5 +1,5 @@ @@ -21,7 +21,7 @@ PostgreSQL documentation CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE table_name ( - { column_name data_type [ DEFAULT default_expr ] [ column_constraint [, ... ] ] + { column_name data_type [ DEFAULT default_expr ] [ column_constraint [ ... ] ] | table_constraint | LIKE parent_table [ { INCLUDING | EXCLUDING } DEFAULTS ] } [, ... ] )