diff options
author | Michael Paquier <michael@paquier.xyz> | 2021-04-12 13:53:17 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2021-04-12 13:53:17 +0900 |
commit | b094063cd16d22b2f065a432580bb3568b2d8a77 (patch) | |
tree | d88b2dea59c41976ea19519149e0b3cdcb700a3a /src | |
parent | 15c1a9d9cb7604472d4823f48b64cdc02c441194 (diff) | |
download | postgresql-b094063cd16d22b2f065a432580bb3568b2d8a77.tar.gz postgresql-b094063cd16d22b2f065a432580bb3568b2d8a77.zip |
Move log_autovacuum_min_duration into its correct sections
This GUC has already been classified as LOGGING_WHAT, but its location
in postgresql.conf.sample and the documentation did not reflect that, so
fix those inconsistencies.
Author: Justin Pryzby
Discussion: https://postgr.es/m/20210404012546.GK6592@telsasoft.com
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 9830cfe382e..2f6dd014a81 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -531,6 +531,11 @@ #debug_print_rewritten = off #debug_print_plan = off #debug_pretty_print = on +#log_autovacuum_min_duration = -1 # log autovacuum activity; + # -1 disables, 0 logs all actions and + # their durations, > 0 logs only + # actions running at least this number + # of milliseconds. #log_checkpoints = off #log_connections = off #log_disconnections = off @@ -616,10 +621,6 @@ #autovacuum = on # Enable autovacuum subprocess? 'on' # requires track_counts to also be on. -#log_autovacuum_min_duration = -1 # -1 disables, 0 logs all actions and - # their durations, > 0 logs only - # actions running at least this number - # of milliseconds. #autovacuum_max_workers = 3 # max number of autovacuum subprocesses # (change requires restart) #autovacuum_naptime = 1min # time between autovacuum runs |