Index: src/sgml/keywords.sgml
===================================================================
RCS file: /home/rbt/work/postgresql/cvs//pgsql-server/doc/src/sgml/keywords.sgml,v
retrieving revision 2.8
diff -c -r2.8 keywords.sgml
*** src/sgml/keywords.sgml	11 Nov 2002 20:14:03 -0000	2.8
--- src/sgml/keywords.sgml	20 May 2003 02:09:31 -0000
***************
*** 873,878 ****
--- 873,884 ----
      <entry>reserved</entry>
     </row>
     <row>
+     <entry><token>DEFAULTS</token></entry>
+     <entry>non-reserved</entry>
+     <entry></entry>
+     <entry></entry>
+    </row>
+    <row>
      <entry><token>DEFERRABLE</token></entry>
      <entry>reserved</entry>
      <entry>reserved</entry>
***************
*** 1101,1106 ****
--- 1107,1118 ----
      <entry>reserved</entry>
     </row>
     <row>
+     <entry><token>EXCLUDING</token></entry>
+     <entry>non-reserved</entry>
+     <entry></entry>
+     <entry></entry>
+    </row>
+    <row>
      <entry><token>EXCLUSIVE</token></entry>
      <entry>non-reserved</entry>
      <entry></entry>
***************
*** 1393,1398 ****
--- 1405,1416 ----
      <entry>reserved (can be function)</entry>
      <entry>reserved</entry>
      <entry>reserved</entry>
+    </row>
+    <row>
+     <entry><token>INCLUDING</token></entry>
+     <entry>non-reserved</entry>
+     <entry></entry>
+     <entry></entry>
     </row>
     <row>
      <entry><token>INCREMENT</token></entry>
Index: src/sgml/ref/create_table.sgml
===================================================================
RCS file: /home/rbt/work/postgresql/cvs//pgsql-server/doc/src/sgml/ref/create_table.sgml,v
retrieving revision 1.68
diff -c -r1.68 create_table.sgml
*** src/sgml/ref/create_table.sgml	4 May 2003 00:03:55 -0000	1.68
--- src/sgml/ref/create_table.sgml	22 May 2003 02:32:37 -0000
***************
*** 18,24 ****
  <synopsis>
  CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PARAMETER">table_name</replaceable> (
      { <replaceable class="PARAMETER">column_name</replaceable> <replaceable class="PARAMETER">data_type</replaceable> [ DEFAULT <replaceable>default_expr</> ] [ <replaceable class="PARAMETER">column_constraint</replaceable> [, ... ] ]
!     | <replaceable>table_constraint</replaceable> }  [, ... ]
  )
  [ INHERITS ( <replaceable>parent_table</replaceable> [, ... ] ) ]
  [ WITH OIDS | WITHOUT OIDS ]
--- 18,25 ----
  <synopsis>
  CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PARAMETER">table_name</replaceable> (
      { <replaceable class="PARAMETER">column_name</replaceable> <replaceable class="PARAMETER">data_type</replaceable> [ DEFAULT <replaceable>default_expr</> ] [ <replaceable class="PARAMETER">column_constraint</replaceable> [, ... ] ]
!     | <replaceable>table_constraint</replaceable>
!     | LIKE <replaceable>parent_table</replaceable> [ { INCLUDING | EXCLUDING } DEFAULTS ] }  [, ... ]
  )
  [ INHERITS ( <replaceable>parent_table</replaceable> [, ... ] ) ]
  [ WITH OIDS | WITHOUT OIDS ]
***************
*** 169,174 ****
--- 170,195 ----
        does not specify a value for the column.  If there is no default
        for a column, then the default is null.
       </para>
+     </listitem>
+    </varlistentry>
+ 
+    <varlistentry>
+     <term><literal>LIKE <replaceable>parent_table</replaceable> [ { INCLUDING | EXCLUDING } DEFAULTS ]</literal></term>
+     <listitem>
+      <para>
+       The <literal>LIKE</literal> clause specifies a table from which
+       the new table automatically inherits all column names, their datatypes, and
+       <literal>NOT NULL</literal> constraints.
+      </para>
+      <para>
+       Unlike <literal>INHERITS</literal>, the new table and inherited table
+       are complete decoupled after creation has been completed.  Data inserted
+       into the new table will not be reflected into the parent table.
+      </para>
+      <para>
+       Default expressions for the inherited column definitions will only be included if
+       <literal>INCLUDING DEFAULTS</literal> is specified.  The default is to exclude
+       default expressions.
      </listitem>
     </varlistentry>
  
