1
1
<!--
2
- $PostgreSQL: pgsql/doc/src/sgml/ref/create_table.sgml,v 1.118 2009/10/13 00:53:07 tgl Exp $
2
+ $PostgreSQL: pgsql/doc/src/sgml/ref/create_table.sgml,v 1.119 2009/10/27 13:58:28 alvherre Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -719,8 +719,8 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
719
719
<literal>PRIMARY KEY</literal> constraint. Storage parameters for
720
720
indexes are documented in <xref linkend="SQL-CREATEINDEX"
721
721
endterm="sql-createindex-title">. The storage parameters currently
722
- available for tables are listed below. For each parameter, there is an
723
- additional, identically named parameter, prefixed with
722
+ available for tables are listed below. For each parameter, unless noted,
723
+ there is an additional, identically named parameter, prefixed with
724
724
<literal>toast.</literal> which can be used to control the behavior of the
725
725
supplementary storage table, if any; see <xref linkend="storage-toast">.
726
726
Note that the supplementary storage table inherits the
@@ -731,7 +731,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
731
731
<variablelist>
732
732
733
733
<varlistentry>
734
- <term><literal>fillfactor</>, <literal>toast.fillfactor</literal> (<type>integer</>)</term>
734
+ <term><literal>fillfactor</> (<type>integer</>)</term>
735
735
<listitem>
736
736
<para>
737
737
The fillfactor for a table is a percentage between 10 and 100.
@@ -743,7 +743,8 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
743
743
original, which is more efficient than placing it on a different page.
744
744
For a table whose entries are never updated, complete packing is the
745
745
best choice, but in heavily updated tables smaller fillfactors are
746
- appropriate.
746
+ appropriate. This parameter cannot be set for the supplementary
747
+ storage table.
747
748
</para>
748
749
</listitem>
749
750
</varlistentry>
@@ -857,7 +858,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
857
858
</varlistentry>
858
859
859
860
<varlistentry>
860
- <term><literal>autovacuum_freeze_table_age</literal> (<type>integer</type>)</term>
861
+ <term><literal>autovacuum_freeze_table_age</literal>, <literal>toast.autovacuum_freeze_table_age</literal> (<type>integer</type>)</term>
861
862
<listitem>
862
863
<para>
863
864
Custom <xref linkend="guc-vacuum-freeze-table-age"> parameter.
0 commit comments