1
1
<!--
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 $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -152,7 +152,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
152
152
table is going to be used in complex queries, it is wise to run
153
153
<command>ANALYZE</> on the temporary table after it is populated.
154
154
</para>
155
-
155
+
156
156
<para>
157
157
Optionally, <literal>GLOBAL</literal> or <literal>LOCAL</literal>
158
158
can be written before <literal>TEMPORARY</> or <literal>TEMP</>.
@@ -803,13 +803,15 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
803
803
for tables, and for indexes associated with a <literal>UNIQUE</literal>,
804
804
<literal>PRIMARY KEY</literal>, or <literal>EXCLUDE</> constraint.
805
805
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
807
808
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
813
815
no <literal>toast.autovacuum_*</literal> settings set.
814
816
</para>
815
817
@@ -828,8 +830,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
828
830
original, which is more efficient than placing it on a different page.
829
831
For a table whose entries are never updated, complete packing is the
830
832
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.
833
834
</para>
834
835
</listitem>
835
836
</varlistentry>
0 commit comments