diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-09-10 01:39:19 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-09-10 01:39:19 +0000 |
commit | b7adf47eda0ef19507aa65bc021cb893536e708c (patch) | |
tree | d41a690bf01fbacc55043b0b706d8c402c4160ec /src | |
parent | 40fda15dcebdd07ee75ac1f55dad145f91297b99 (diff) | |
download | postgresql-b7adf47eda0ef19507aa65bc021cb893536e708c.tar.gz postgresql-b7adf47eda0ef19507aa65bc021cb893536e708c.zip |
Set the correct context (PGC_SIGHUP) for log_autovacuum, per ITAGAKI Takahiro.
Fix grammatical errors in its description.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/misc/guc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 6cdc87df6db..849aa70d9d5 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -10,7 +10,7 @@ * Written by Peter Eisentraut <peter_e@gmx.net>. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.417 2007/09/10 00:57:21 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.418 2007/09/10 01:39:19 tgl Exp $ * *-------------------------------------------------------------------- */ @@ -1573,10 +1573,10 @@ static struct config_int ConfigureNamesInt[] = }, { - {"log_autovacuum", PGC_BACKEND, LOGGING_WHAT, + {"log_autovacuum", PGC_SIGHUP, LOGGING_WHAT, gettext_noop("Sets the minimum execution time above which autovacuum actions " "will be logged."), - gettext_noop("Zero prints all actions. The default is -1 (turning this feature off)."), + gettext_noop("Zero prints all actions. The default is -1 (disabling autovacuum logging)."), GUC_UNIT_MS }, &Log_autovacuum, |