Re: [HACKERS] CREATE TABLE synopsis

2005-08-12 Thread Bruce Momjian
Right, fixed in create_table.sgml. I don't think it is any other place. --- Alvaro Herrera wrote: > The CREATE TABLE synopsis shows this: > > CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE table_name ( > { colum

[HACKERS] CREATE TABLE synopsis

2005-08-12 Thread Alvaro Herrera
The CREATE TABLE synopsis shows this: CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE table_name ( { column_name data_type [ DEFAULT default_expr ] [ column_constraint [ ... ] ] | table_constraint | LIKE parent_table [ { INCLUDING | EXCLUDING } DEFAULTS ] } [, ... ] ) However,