aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/init/postinit.c
diff options
context:
space:
mode:
authorVadim B. Mikheev <vadim4o@yahoo.com>2000-10-28 16:21:00 +0000
committerVadim B. Mikheev <vadim4o@yahoo.com>2000-10-28 16:21:00 +0000
commit5b0740d3fcd55f6e545e8bd577fe8ccba2be4987 (patch)
tree06cf3807f89c23d365322e08f594e6bbaaa95a3c /src/backend/utils/init/postinit.c
parent2f4c9d39febec0c092388b124bf3de2d857eb5a9 (diff)
downloadpostgresql-5b0740d3fcd55f6e545e8bd577fe8ccba2be4987.tar.gz
postgresql-5b0740d3fcd55f6e545e8bd577fe8ccba2be4987.zip
WAL
Diffstat (limited to 'src/backend/utils/init/postinit.c')
-rw-r--r--src/backend/utils/init/postinit.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/backend/utils/init/postinit.c b/src/backend/utils/init/postinit.c
index cee8dfaac90..fbc9cc2ab2c 100644
--- a/src/backend/utils/init/postinit.c
+++ b/src/backend/utils/init/postinit.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.68 2000/10/16 14:52:15 vadim Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.69 2000/10/28 16:20:58 vadim Exp $
*
*
*-------------------------------------------------------------------------
@@ -231,9 +231,6 @@ InitPostgres(const char *dbname, const char *username)
{
bool bootstrap = IsBootstrapProcessingMode();
- /* initialize the local buffer manager */
- InitLocalBuffer();
-
#ifndef XLOG
if (!TransactionFlushEnabled())
on_shmem_exit(FlushBufferPool, 0);
@@ -414,4 +411,8 @@ BaseInit(void)
smgrinit();
EnablePortalManager(); /* memory for portal/transaction stuff */
+
+ /* initialize the local buffer manager */
+ InitLocalBuffer();
+
}