1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-11 20:28:21 +03:00

Handle clog structure in shared memory in exec() case, for Win32.

This commit is contained in:
Bruce Momjian
2003-05-03 03:52:07 +00:00
parent 36fa297497
commit a7fd03e1de
7 changed files with 91 additions and 30 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.329 2003/05/02 21:59:31 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.330 2003/05/03 03:52:07 momjian Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
@ -1453,6 +1453,7 @@ PostgresMain(int argc, char *argv[], const char *username)
break;
}
/*
* -d is not the same as setting
* log_min_messages because it enables other
@ -1577,6 +1578,9 @@ PostgresMain(int argc, char *argv[], const char *username)
* restart... */
}
BaseInit();
#ifdef EXECBACKEND
AttachSharedMemoryAndSemaphores();
#endif
}
else
{
@ -1672,7 +1676,7 @@ PostgresMain(int argc, char *argv[], const char *username)
if (!IsUnderPostmaster)
{
puts("\nPOSTGRES backend interactive interface ");
puts("$Revision: 1.329 $ $Date: 2003/05/02 21:59:31 $\n");
puts("$Revision: 1.330 $ $Date: 2003/05/03 03:52:07 $\n");
}
/*