diff options
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index ed59dfce893..d31a67599c9 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -31,6 +31,7 @@ #include "miscadmin.h" #include "nodes/makefuncs.h" #include "pg_getopt.h" +#include "postmaster/postmaster.h" #include "storage/bufpage.h" #include "storage/ipc.h" #include "storage/proc.h" @@ -309,6 +310,13 @@ BootstrapModeMain(int argc, char *argv[], bool check_only) InitializeMaxBackends(); + /* + * Even though bootstrapping runs in single-process mode, initialize + * postmaster child slots array so that --check can detect running out of + * shared memory or other resources if max_connections is set too high. + */ + InitPostmasterChildSlots(); + InitializeFastPathLocks(); CreateSharedMemoryAndSemaphores(); |