summaryrefslogtreecommitdiff
path: root/doc/src/sgml
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2015-10-05 16:09:13 +0200
committerAndres Freund <andres@anarazel.de>2015-10-05 16:51:04 +0200
commit2fc66bfd80b5f69a80845e24c8a3c90cb2842176 (patch)
treef5fb512837a1dbe8f982e551296803dd046c5da5 /doc/src/sgml
parentbed3f6d0354a7ca2fcd7d088ff271b422dbf9921 (diff)
downloadpostgresql-2fc66bfd80b5f69a80845e24c8a3c90cb2842176.tar.gz
Remove outdated comment about relation level autovacuum freeze limits.
The documentation for the autovacuum_multixact_freeze_max_age and autovacuum_freeze_max_age relation level parameters contained: "Note that while you can set autovacuum_multixact_freeze_max_age very small, or even zero, this is usually unwise since it will force frequent vacuuming." which hasn't been true since these options were made relation options, instead of residing in the pg_autovacuum table (834a6da4f7). Remove the outdated sentence. Even the lowered limits from 2596d70 are high enough that this doesn't warrant calling out the risk in the CREATE TABLE docs. Per discussion with Tom Lane and Alvaro Herrera Discussion: 26377.1443105453@sss.pgh.pa.us Backpatch: 9.0- (in parts)
Diffstat (limited to 'doc/src/sgml')
-rw-r--r--doc/src/sgml/ref/create_table.sgml9
1 files changed, 2 insertions, 7 deletions
diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml
index 299cce8811..a295a493c1 100644
--- a/doc/src/sgml/ref/create_table.sgml
+++ b/doc/src/sgml/ref/create_table.sgml
@@ -998,9 +998,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXI
Custom <xref linkend="guc-autovacuum-freeze-max-age"> parameter. Note that
autovacuum will ignore attempts to set a per-table
<literal>autovacuum_freeze_max_age</> larger than the system-wide setting
- (it can only be set smaller). Note that while you can set
- <literal>autovacuum_freeze_max_age</> very small, or even zero, this is
- usually unwise since it will force frequent vacuuming.
+ (it can only be set smaller).
</para>
</listitem>
</varlistentry>
@@ -1034,10 +1032,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXI
Custom <xref linkend="guc-autovacuum-multixact-freeze-max-age"> parameter. Note
that autovacuum will ignore attempts to set a per-table
<literal>autovacuum_multixact_freeze_max_age</> larger than the
- system-wide setting (it can only be set smaller). Note that while you
- can set <literal>autovacuum_multixact_freeze_max_age</> very small,
- or even zero, this is usually unwise since it will force frequent
- vacuuming.
+ system-wide setting (it can only be set smaller).
</para>
</listitem>
</varlistentry>