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:01 +0300 |
| commit | 785d4998b69a538023b82bfa95db4af5f7d07b06 (patch) | |
| tree | 050a5e983eb807950b186601f2dc1d5247bd4f46 | |
| parent | 77dc2b0a43176d571aabac245e7228d834f7af95 (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.
| -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 942d4c25a5f..b79ffbfef27 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -3543,9 +3543,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') { |
