11<!--
2- $PostgreSQL: pgsql/doc/src/sgml/ref/create_table.sgml,v 1.126 2010/04/16 02:22:33 momjian Exp $
2+ $PostgreSQL: pgsql/doc/src/sgml/ref/create_table.sgml,v 1.127 2010/05/13 18:54:18 tgl Exp $
33PostgreSQL documentation
44-->
55
@@ -152,7 +152,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
152152 table is going to be used in complex queries, it is wise to run
153153 <command>ANALYZE</> on the temporary table after it is populated.
154154 </para>
155-
155+
156156 <para>
157157 Optionally, <literal>GLOBAL</literal> or <literal>LOCAL</literal>
158158 can be written before <literal>TEMPORARY</> or <literal>TEMP</>.
@@ -803,13 +803,15 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
803803 for tables, and for indexes associated with a <literal>UNIQUE</literal>,
804804 <literal>PRIMARY KEY</literal>, or <literal>EXCLUDE</> constraint.
805805 Storage parameters for
806- indexes are documented in <xref linkend="SQL-CREATEINDEX">. The storage parameters currently
806+ indexes are documented in <xref linkend="SQL-CREATEINDEX">.
807+ The storage parameters currently
807808 available for tables are listed below. For each parameter, unless noted,
808- there is an additional, identically named parameter, prefixed with
809- <literal>toast.</literal> which can be used to control the behavior of the
810- supplementary storage table, if any; see <xref linkend="storage-toast">.
811- Note that the supplementary storage table inherits the
812- <literal>autovacuum</literal> values from its parent table, if there are
809+ there is an additional parameter with the same name prefixed with
810+ <literal>toast.</literal>, which can be used to control the behavior of the
811+ table's secondary <acronym>TOAST</> table, if any
812+ (see <xref linkend="storage-toast"> for more information about TOAST).
813+ Note that the TOAST table inherits the
814+ <literal>autovacuum_*</literal> values from its parent table, if there are
813815 no <literal>toast.autovacuum_*</literal> settings set.
814816 </para>
815817
@@ -828,8 +830,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
828830 original, which is more efficient than placing it on a different page.
829831 For a table whose entries are never updated, complete packing is the
830832 best choice, but in heavily updated tables smaller fillfactors are
831- appropriate. This parameter cannot be set for the supplementary
832- storage table.
833+ appropriate. This parameter cannot be set for TOAST tables.
833834 </para>
834835 </listitem>
835836 </varlistentry>