Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 527f8fe

Browse files
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 306dc52.
1 parent affd38e commit 527f8fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/utils/misc/guc_tables.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3428,7 +3428,7 @@ struct config_int ConfigureNamesInt[] =
34283428
},
34293429
{
34303430
{"autovacuum_vacuum_max_threshold", PGC_SIGHUP, VACUUM_AUTOVACUUM,
3431-
gettext_noop("Maximum number of tuple updates or deletes prior to vacuum."),
3431+
gettext_noop("Maximum number of tuple updates or deletes prior to vacuum, or -1 to disable maximum threshold."),
34323432
NULL
34333433
},
34343434
&autovacuum_vac_max_thresh,

0 commit comments

Comments
 (0)