diff options
author | Bruce Momjian <bruce@momjian.us> | 2013-10-08 22:41:23 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2013-10-08 22:41:23 -0400 |
commit | cbafd6618af9f10e89ed05ff82dac69e65a70307 (patch) | |
tree | 7c89c2169a6872ee15316dc375b0651a62bd1eaa /src/backend/bootstrap/bootstrap.c | |
parent | bf46524b3136928bfe61c782a950a30638bbd159 (diff) | |
download | postgresql-cbafd6618af9f10e89ed05ff82dac69e65a70307.tar.gz postgresql-cbafd6618af9f10e89ed05ff82dac69e65a70307.zip |
Move new effective_cache_size function
Previously set_default_effective_cache_size() could not handle fork,
non-fork, and bootstrap cases.
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index d23dc4504ae..53c55a36948 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -312,6 +312,8 @@ AuxiliaryProcessMain(int argc, char *argv[]) proc_exit(1); } + set_default_effective_cache_size(); + /* * Identify myself via ps */ |