]> granicus.if.org Git - postgresql/commitdiff
GUC: adjust effective_cache_size SQL descriptions
authorBruce Momjian <bruce@momjian.us>
Tue, 6 Nov 2018 18:40:02 +0000 (13:40 -0500)
committerBruce Momjian <bruce@momjian.us>
Tue, 6 Nov 2018 18:40:02 +0000 (13:40 -0500)
Follow on patch for commit 3e0f1a4741f564c1a2fa6e944729d6967355d8c7.

Reported-by: Peter Eisentraut
Discussion: https://postgr.es/m/369ec766-b947-51bd-4dad-6fb9e026439f@2ndquadrant.com

Backpatch-through: 9.4

src/backend/utils/misc/guc.c

index d0d3903f201f1f72dd46943d9bdee4cf27f3cb59..0628912ed9c9a4eb63b26bab34cc988f3557bb6e 100644 (file)
@@ -2738,8 +2738,8 @@ static struct config_int ConfigureNamesInt[] =
 
        {
                {"effective_cache_size", PGC_USERSET, QUERY_TUNING_COST,
-                       gettext_noop("Sets the planner's assumption about the size of the data cache."),
-                       gettext_noop("That is, the size of the cache used for PostgreSQL data files. "
+                       gettext_noop("Sets the planner's assumption about the total size of the data caches."),
+                       gettext_noop("That is, the total size of the caches (kernel cache and shared buffers) used for PostgreSQL data files. "
                                                 "This is measured in disk pages, which are normally 8 kB each."),
                        GUC_UNIT_BLOCKS,
                },