Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit b091b97

Browse files
committed
Fix documentation on the toast.fillfactor reloption: it doesn't exist.
Per note from Zoltan Boszormenyi.
1 parent f1c5247 commit b091b97

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

doc/src/sgml/ref/create_table.sgml

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
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 $
33
PostgreSQL documentation
44
-->
55

@@ -719,8 +719,8 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
719719
<literal>PRIMARY KEY</literal> constraint. Storage parameters for
720720
indexes are documented in <xref linkend="SQL-CREATEINDEX"
721721
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
724724
<literal>toast.</literal> which can be used to control the behavior of the
725725
supplementary storage table, if any; see <xref linkend="storage-toast">.
726726
Note that the supplementary storage table inherits the
@@ -731,7 +731,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
731731
<variablelist>
732732

733733
<varlistentry>
734-
<term><literal>fillfactor</>, <literal>toast.fillfactor</literal> (<type>integer</>)</term>
734+
<term><literal>fillfactor</> (<type>integer</>)</term>
735735
<listitem>
736736
<para>
737737
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
743743
original, which is more efficient than placing it on a different page.
744744
For a table whose entries are never updated, complete packing is the
745745
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.
747748
</para>
748749
</listitem>
749750
</varlistentry>
@@ -857,7 +858,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
857858
</varlistentry>
858859

859860
<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>
861862
<listitem>
862863
<para>
863864
Custom <xref linkend="guc-vacuum-freeze-table-age"> parameter.

0 commit comments

Comments
 (0)