From bf46524b3136928bfe61c782a950a30638bbd159 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 8 Oct 2013 19:25:26 -0400 Subject: [PATCH] Fix C comment in check_effective_cache_size() --- src/backend/optimizer/path/costsize.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/optimizer/path/costsize.c b/src/backend/optimizer/path/costsize.c index 82c66f76caf..e7f8cec0fed 100644 --- a/src/backend/optimizer/path/costsize.c +++ b/src/backend/optimizer/path/costsize.c @@ -486,7 +486,7 @@ check_effective_cache_size(int *newval, void **extra, GucSource source) { /* * If we haven't yet changed the boot_val default of -1, just let it - * be. We'll fix it in index_pages_fetched + * be. We'll fix it later. */ if (effective_cache_size == -1) return true;