diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-03-09 05:11:53 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-03-09 05:11:53 +0000 |
commit | 8567bb2d0672c76f8fbc9156ee62ce065d2f8e15 (patch) | |
tree | 56aa049f6dab95f832ab944ba70f6b81fa470431 /src/backend/postmaster/postmaster.c | |
parent | eeec31774ab4e1a0fc1211daa58557ec1d693f2d (diff) |
Corrects a typo, introduces missing variables, and rearranges the
initialization of stats process under EXEC_BACKEND.
[A cleaner, rationalized approach to stat/backend/SSDataBase child
processes under EXEC_BACKEND is on my TODO list. However this patch
takes care of immediate concerns (ie. stats test now passes under
win32)]
Claudio Natoli
Diffstat (limited to 'src/backend/postmaster/postmaster.c')
-rw-r--r-- | src/backend/postmaster/postmaster.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 9b4abc16eb1..1bd80e1611c 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -37,7 +37,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.371 2004/03/09 04:43:06 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.372 2004/03/09 05:11:52 momjian Exp $ * * NOTES * @@ -2721,6 +2721,9 @@ SubPostmasterMain(int argc, char* argv[]) read_nondefault_variables(); read_backend_variables(backendID,&port); + /* Remaining initialization */ + pgstat_init_forkexec_backend(); + /* FIXME: [fork/exec] Ugh */ load_hba(); load_ident(); |