diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-03-15 19:20:36 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-03-15 19:20:36 +0000 |
commit | 01747692fe133305b03ccd7505e92b1d18c3ea1b (patch) | |
tree | 8ce3874c350868ed1d0054acb93919bb52aba2de /src/backend/bootstrap/bootstrap.c | |
parent | 0b73fe14f18126d534d4dfb83b8317da8a951fae (diff) | |
download | postgresql-01747692fe133305b03ccd7505e92b1d18c3ea1b.tar.gz postgresql-01747692fe133305b03ccd7505e92b1d18c3ea1b.zip |
Repair two problems with WAL logging of sequence nextvalI() ops, as
per recent pghackers discussion: force a new WAL record at first nextval
after a checkpoint, and ensure that xlog is flushed to disk if a nextval
record is the only thing emitted by a transaction.
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index 01719a91a67..275b0579ffa 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.123 2002/03/08 00:42:09 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.124 2002/03/15 19:20:34 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -386,7 +386,7 @@ BootstrapMain(int argc, char *argv[]) InitDummyProcess(); /* needed to get LWLocks */ CreateDummyCaches(); CreateCheckPoint(false); - SetRedoRecPtr(); + SetSavedRedoRecPtr(); /* pass redo ptr back to postmaster */ proc_exit(0); /* done */ case BS_XLOG_STARTUP: |