aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2009-10-27 13:58:28 +0000
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2009-10-27 13:58:28 +0000
commitb091b9769a75bbd35c01ea1c26ee13498e390661 (patch)
tree5fb87ab44a96a8ad60032363ca38ab0932a192e1
parentf1c5247563020acf45bbf828cce681cd1f1b1ef2 (diff)
downloadpostgresql-b091b9769a75bbd35c01ea1c26ee13498e390661.tar.gz
postgresql-b091b9769a75bbd35c01ea1c26ee13498e390661.zip
Fix documentation on the toast.fillfactor reloption: it doesn't exist.
Per note from Zoltan Boszormenyi.
-rw-r--r--doc/src/sgml/ref/create_table.sgml13
1 files changed, 7 insertions, 6 deletions
diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml
index 5768c4cf2e2..8e4b1bbc312 100644
--- a/doc/src/sgml/ref/create_table.sgml
+++ b/doc/src/sgml/ref/create_table.sgml
@@ -1,5 +1,5 @@
<!--
-$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
-->
@@ -719,8 +719,8 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
<literal>PRIMARY KEY</literal> constraint. Storage parameters for
indexes are documented in <xref linkend="SQL-CREATEINDEX"
endterm="sql-createindex-title">. The storage parameters currently
- available for tables are listed below. For each parameter, there is an
- additional, identically named parameter, prefixed with
+ available for tables are listed below. For each parameter, unless noted,
+ there is an additional, identically named parameter, prefixed with
<literal>toast.</literal> which can be used to control the behavior of the
supplementary storage table, if any; see <xref linkend="storage-toast">.
Note that the supplementary storage table inherits the
@@ -731,7 +731,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
<variablelist>
<varlistentry>
- <term><literal>fillfactor</>, <literal>toast.fillfactor</literal> (<type>integer</>)</term>
+ <term><literal>fillfactor</> (<type>integer</>)</term>
<listitem>
<para>
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
original, which is more efficient than placing it on a different page.
For a table whose entries are never updated, complete packing is the
best choice, but in heavily updated tables smaller fillfactors are
- appropriate.
+ appropriate. This parameter cannot be set for the supplementary
+ storage table.
</para>
</listitem>
</varlistentry>
@@ -857,7 +858,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
</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>
<para>
Custom <xref linkend="guc-vacuum-freeze-table-age"> parameter.