aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Bossart <nathan@postgresql.org>2025-02-06 11:59:12 -0600
committerNathan Bossart <nathan@postgresql.org>2025-02-06 11:59:12 -0600
commit527f8fec220b4c3b84d353543e9741b76d396a11 (patch)
tree8519e12bf95a5c69856ebc1c81e0dfd7d21fcf0c
parentaffd38e55a3cabbc4c64198dde71c22a94877690 (diff)
downloadpostgresql-527f8fec220b4c3b84d353543e9741b76d396a11.tar.gz
postgresql-527f8fec220b4c3b84d353543e9741b76d396a11.zip
Fix autovacuum_vacuum_max_threshold's GUC description.
Most GUCs that accept a special value to disable the feature mention it in their GUC description. This commit adds that information to autovacuum_vacuum_max_threshold's description. Oversight in commit 306dc520b9.
-rw-r--r--src/backend/utils/misc/guc_tables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc_tables.c b/src/backend/utils/misc/guc_tables.c
index b887d3e5983..ce7534d4d23 100644
--- a/src/backend/utils/misc/guc_tables.c
+++ b/src/backend/utils/misc/guc_tables.c
@@ -3428,7 +3428,7 @@ struct config_int ConfigureNamesInt[] =
},
{
{"autovacuum_vacuum_max_threshold", PGC_SIGHUP, VACUUM_AUTOVACUUM,
- gettext_noop("Maximum number of tuple updates or deletes prior to vacuum."),
+ gettext_noop("Maximum number of tuple updates or deletes prior to vacuum, or -1 to disable maximum threshold."),
NULL
},
&autovacuum_vac_max_thresh,