diff options
author | Nathan Bossart <nathan@postgresql.org> | 2025-02-06 11:59:12 -0600 |
---|---|---|
committer | Nathan Bossart <nathan@postgresql.org> | 2025-02-06 11:59:12 -0600 |
commit | 527f8fec220b4c3b84d353543e9741b76d396a11 (patch) | |
tree | 8519e12bf95a5c69856ebc1c81e0dfd7d21fcf0c | |
parent | affd38e55a3cabbc4c64198dde71c22a94877690 (diff) | |
download | postgresql-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.c | 2 |
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, |