diff options
author | Bruce Momjian <bruce@momjian.us> | 2013-10-08 23:53:39 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2013-10-08 23:53:39 -0400 |
commit | 96dfa6ec0d809bb49f3472921b3ed941d9bd1b8c (patch) | |
tree | da50d2c2ef4c084c0c8c791b9a794e69cde08c0a /src/backend/tcop/postgres.c | |
parent | 6b82f78ff95d7d4201d44359dad41882e7111960 (diff) | |
download | postgresql-96dfa6ec0d809bb49f3472921b3ed941d9bd1b8c.tar.gz postgresql-96dfa6ec0d809bb49f3472921b3ed941d9bd1b8c.zip |
Adjust the effective_cache_size default for standalone backends
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 1eaf287eec9..4b2a7761af8 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -3592,6 +3592,8 @@ PostgresMain(int argc, char *argv[], proc_exit(1); } + set_default_effective_cache_size(); + /* * You might expect to see a setsid() call here, but it's not needed, * because if we are under a postmaster then BackendInitialize() did it. |