diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2012-04-08 19:39:12 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2012-04-08 19:41:59 +0300 |
commit | cd8b1c6d48d664fe2e5575f40707ed247cee4aa0 (patch) | |
tree | d913e6fe9b4a5e3379995ceab0ff53e00a376a03 /src | |
parent | 89da5dc6db7e649396eb1cfa1abcdd39f86cdd88 (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')
-rw-r--r-- | src/backend/tcop/postgres.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 85c089716da..b22ea3deb68 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -3004,9 +3004,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') { |