Commit 97bb6e89 authored by Bruce Momjian's avatar Bruce Momjian

Fix LRU/ALL description mismatch for GUC parameter.

parent 0c7786bd
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>. * Written by Peter Eisentraut <peter_e@gmx.net>.
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.282 2005/08/14 22:19:50 petere Exp $ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.283 2005/08/19 18:58:18 momjian Exp $
* *
*-------------------------------------------------------------------- *--------------------------------------------------------------------
*/ */
...@@ -1365,7 +1365,7 @@ static struct config_int ConfigureNamesInt[] = ...@@ -1365,7 +1365,7 @@ static struct config_int ConfigureNamesInt[] =
{ {
{"bgwriter_lru_maxpages", PGC_SIGHUP, RESOURCES, {"bgwriter_lru_maxpages", PGC_SIGHUP, RESOURCES,
gettext_noop("Background writer maximum number of all pages to flush per round"), gettext_noop("Background writer maximum number of LRU pages to flush per round"),
NULL NULL
}, },
&bgwriter_lru_maxpages, &bgwriter_lru_maxpages,
...@@ -1374,7 +1374,7 @@ static struct config_int ConfigureNamesInt[] = ...@@ -1374,7 +1374,7 @@ static struct config_int ConfigureNamesInt[] =
{ {
{"bgwriter_all_maxpages", PGC_SIGHUP, RESOURCES, {"bgwriter_all_maxpages", PGC_SIGHUP, RESOURCES,
gettext_noop("Background writer maximum number of LRU pages to flush per round"), gettext_noop("Background writer maximum number of all pages to flush per round"),
NULL NULL
}, },
&bgwriter_all_maxpages, &bgwriter_all_maxpages,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment