aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2013-12-23 20:32:29 -0500
committerRobert Haas <rhaas@postgresql.org>2013-12-23 20:36:31 -0500
commitd43760b624b7cebc35e5f9c60d2e1439cbe9b220 (patch)
tree58c5e1eae295ab1bd87c6fa3b3e658dc38c90b5e /src
parentcf63c641cae2063a0442d73d49af295301cec61b (diff)
downloadpostgresql-d43760b624b7cebc35e5f9c60d2e1439cbe9b220.tar.gz
postgresql-d43760b624b7cebc35e5f9c60d2e1439cbe9b220.zip
Revise documentation for new freezing method.
Commit 37484ad2aacef5ec794f4dd3d5cf814475180a78 invalidated a good chunk of documentation, so patch it up to reflect the new state of play. Along the way, patch remaining documentation references to FrozenXID to say instead FrozenTransactionId, so that they match the way we actually spell it in the code.
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/common/reloptions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/common/reloptions.c b/src/backend/access/common/reloptions.c
index 31941e99edb..6530d716490 100644
--- a/src/backend/access/common/reloptions.c
+++ b/src/backend/access/common/reloptions.c
@@ -182,7 +182,7 @@ static relopt_int intRelOpts[] =
{
{
"autovacuum_freeze_table_age",
- "Age at which VACUUM should perform a full table sweep to replace old Xid values with FrozenXID",
+ "Age at which VACUUM should perform a full table sweep to freeze row versions",
RELOPT_KIND_HEAP | RELOPT_KIND_TOAST
}, -1, 0, 2000000000
},