diff -cpr --exclude=CVS 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-07-30 05:56:17.000000000 +0900 --- work/doc/src/sgml/ref/create_table.sgml 2009-09-06 17:17:39.768335000 +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 | STORAGES | COMMENTS } ] ... } [, ... ] ] ) [ INHERITS ( parent_table [, ... ] ) ] *************** and table *** 230,235 **** --- 230,239 ---- will always be chosen for it. + + Column storage parameters are also copied from parent tables. + +