Commit b091b976 authored by Alvaro Herrera's avatar Alvaro Herrera

Fix documentation on the toast.fillfactor reloption: it doesn't exist.

Per note from Zoltan Boszormenyi.
parent f1c52475
<!-- <!--
$PostgreSQL: pgsql/doc/src/sgml/ref/create_table.sgml,v 1.118 2009/10/13 00:53:07 tgl Exp $ $PostgreSQL: pgsql/doc/src/sgml/ref/create_table.sgml,v 1.119 2009/10/27 13:58:28 alvherre Exp $
PostgreSQL documentation PostgreSQL documentation
--> -->
...@@ -719,8 +719,8 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR ...@@ -719,8 +719,8 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
<literal>PRIMARY KEY</literal> constraint. Storage parameters for <literal>PRIMARY KEY</literal> constraint. Storage parameters for
indexes are documented in <xref linkend="SQL-CREATEINDEX" indexes are documented in <xref linkend="SQL-CREATEINDEX"
endterm="sql-createindex-title">. The storage parameters currently endterm="sql-createindex-title">. The storage parameters currently
available for tables are listed below. For each parameter, there is an available for tables are listed below. For each parameter, unless noted,
additional, identically named parameter, prefixed with there is an additional, identically named parameter, prefixed with
<literal>toast.</literal> which can be used to control the behavior of the <literal>toast.</literal> which can be used to control the behavior of the
supplementary storage table, if any; see <xref linkend="storage-toast">. supplementary storage table, if any; see <xref linkend="storage-toast">.
Note that the supplementary storage table inherits the Note that the supplementary storage table inherits the
...@@ -731,7 +731,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR ...@@ -731,7 +731,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
<variablelist> <variablelist>
<varlistentry> <varlistentry>
<term><literal>fillfactor</>, <literal>toast.fillfactor</literal> (<type>integer</>)</term> <term><literal>fillfactor</> (<type>integer</>)</term>
<listitem> <listitem>
<para> <para>
The fillfactor for a table is a percentage between 10 and 100. 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,7 +743,8 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
original, which is more efficient than placing it on a different page. original, which is more efficient than placing it on a different page.
For a table whose entries are never updated, complete packing is the For a table whose entries are never updated, complete packing is the
best choice, but in heavily updated tables smaller fillfactors are best choice, but in heavily updated tables smaller fillfactors are
appropriate. appropriate. This parameter cannot be set for the supplementary
storage table.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
...@@ -857,7 +858,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR ...@@ -857,7 +858,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
</varlistentry> </varlistentry>
<varlistentry> <varlistentry>
<term><literal>autovacuum_freeze_table_age</literal> (<type>integer</type>)</term> <term><literal>autovacuum_freeze_table_age</literal>, <literal>toast.autovacuum_freeze_table_age</literal> (<type>integer</type>)</term>
<listitem> <listitem>
<para> <para>
Custom <xref linkend="guc-vacuum-freeze-table-age"> parameter. Custom <xref linkend="guc-vacuum-freeze-table-age"> parameter.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment