summaryrefslogtreecommitdiff
path: root/src/backend/tcop/postgres.c
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2012-04-08 19:39:12 +0300
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2012-04-08 19:42:13 +0300
commit2f8659b06140debf5cfba46b844513cfe5149be7 (patch)
tree2634ae59c19c4de77c96109b83efc76326148826 /src/backend/tcop/postgres.c
parentddeac5dec10abe8b26d6a336f95ca593dcf3f3df (diff)
set_stack_base() no longer needs to be called in PostgresMain.
This was a thinko in previous commit. Now that stack base pointer is now set in PostmasterMain and SubPostmasterMain, it doesn't need to be set in PostgresMain anymore.
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r--src/backend/tcop/postgres.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c
index 64b9722cc60..cc2621157b9 100644
--- a/src/backend/tcop/postgres.c
+++ b/src/backend/tcop/postgres.c
@@ -3011,9 +3011,6 @@ PostgresMain(int argc, char *argv[], const char *username)
SetProcessingMode(InitProcessing);
- /* Set up reference point for stack depth checking */
- set_stack_base();
-
/* Compute paths, if we didn't inherit them from postmaster */
if (my_exec_path[0] == '\0')
{