diff -cprN head/doc/src/sgml/ref/create_table.sgml work/doc/src/sgml/ref/create_table.sgml *** head/doc/src/sgml/ref/create_table.sgml 2009-09-18 14:00:41.000000000 +0900 --- work/doc/src/sgml/ref/create_table.sgml 2009-09-28 11:16:34.150010328 +0900 *************** PostgreSQL documentation *** 24,30 **** 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 | CONSTRAINTS | INDEXES } ] ... } [, ... ] ] ) [ INHERITS ( parent_table [, ... ] ) ] --- 24,30 ---- 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 | CONSTRAINTS | INDEXES | STORAGE | COMMENTS | ALL } ] ... } [, ... ] ] ) [ INHERITS ( parent_table [, ... ] ) ] *************** CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY *** 230,235 **** --- 230,239 ---- will always be chosen for it. + + Column storage parameters are also copied from parent tables. + +