diff options
author | Vadim B. Mikheev <vadim4o@yahoo.com> | 2000-12-28 13:00:29 +0000 |
---|---|---|
committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 2000-12-28 13:00:29 +0000 |
commit | 7ceeeb662fbedd3c6d6234c95afa5ac5d8db7343 (patch) | |
tree | 8a05429d204fb150a03b1b99caedcc1fb8154303 /src/backend/bootstrap/bootstrap.c | |
parent | c996c7f5739863332baceafb48d9514fad60aa46 (diff) | |
download | postgresql-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.c | 5 |
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(); |