Fix LRU/ALL description mismatch for GUC parameter.
authorBruce Momjian <[email protected]>
Fri, 19 Aug 2005 18:58:18 +0000 (18:58 +0000)
committerBruce Momjian <[email protected]>
Fri, 19 Aug 2005 18:58:18 +0000 (18:58 +0000)
src/backend/utils/misc/guc.c

index fea7c89a1622089e88dfb6479b4394622903756c..7dd80f5115a0524936db0820bf03af5a146f91d9 100644 (file)
@@ -1365,7 +1365,7 @@ static struct config_int ConfigureNamesInt[] =
 
        {
                {"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
                },
                &bgwriter_lru_maxpages,
@@ -1374,7 +1374,7 @@ static struct config_int ConfigureNamesInt[] =
 
        {
                {"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
                },
                &bgwriter_all_maxpages,