aboutsummaryrefslogtreecommitdiff
path: root/src/backend/bootstrap/bootstrap.c
diff options
context:
space:
mode:
authorVadim B. Mikheev <vadim4o@yahoo.com>2000-12-28 13:00:29 +0000
committerVadim B. Mikheev <vadim4o@yahoo.com>2000-12-28 13:00:29 +0000
commit7ceeeb662fbedd3c6d6234c95afa5ac5d8db7343 (patch)
tree8a05429d204fb150a03b1b99caedcc1fb8154303 /src/backend/bootstrap/bootstrap.c
parentc996c7f5739863332baceafb48d9514fad60aa46 (diff)
downloadpostgresql-7ceeeb662fbedd3c6d6234c95afa5ac5d8db7343.tar.gz
postgresql-7ceeeb662fbedd3c6d6234c95afa5ac5d8db7343.zip
New WAL version - CRC and data blocks backup.
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r--src/backend/bootstrap/bootstrap.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c
index 3f2bf76a36e..cd4186eec83 100644
--- a/src/backend/bootstrap/bootstrap.c
+++ b/src/backend/bootstrap/bootstrap.c
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.101 2000/11/25 20:33:51 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.102 2000/12/28 13:00:12 vadim Exp $
*
*-------------------------------------------------------------------------
*/
@@ -147,6 +147,8 @@ static MemoryContext nogc = NULL; /* special no-gc mem context */
extern int optind;
extern char *optarg;
+extern void SetRedoRecPtr(void);
+
/*
* At bootstrap time, we first declare all the indices to be built, and
* then build them. The IndexList structure stores enough information
@@ -349,6 +351,7 @@ BootstrapMain(int argc, char *argv[])
{
CreateDummyCaches();
CreateCheckPoint(false);
+ SetRedoRecPtr();
}
else if (xlogop == BS_XLOG_STARTUP)
StartupXLOG();