diff options
author | Vadim B. Mikheev <vadim4o@yahoo.com> | 2000-11-21 10:17:57 +0000 |
---|---|---|
committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 2000-11-21 10:17:57 +0000 |
commit | 2536267404dfa8d34cb78ba6358cafe7731b6c91 (patch) | |
tree | 68d3388f1f3683c7dad8177618d747ae9867d3fc /src | |
parent | e8ff221d8b137c0e9a4242a24a19599f02b56ff7 (diff) | |
download | postgresql-2536267404dfa8d34cb78ba6358cafe7731b6c91.tar.gz postgresql-2536267404dfa8d34cb78ba6358cafe7731b6c91.zip |
misc
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/transam/xlog.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 6d6d8edbda5..e39c29920f6 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.30 2000/11/21 09:39:56 vadim Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.31 2000/11/21 10:17:57 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -1293,6 +1293,7 @@ BootStrapXLOG() checkPoint.nextXid = FirstTransactionId; checkPoint.nextOid = BootstrapObjectIdData; checkPoint.ThisStartUpID = 0; + checkPoint.Shutdown = true; ShmemVariableCache->nextXid = checkPoint.nextXid; ShmemVariableCache->nextOid = checkPoint.nextOid; @@ -1425,7 +1426,7 @@ StartupXLOG() ControlFile->catalog_version_no, CATALOG_VERSION_NO); if (ControlFile->state == DB_SHUTDOWNED) - elog(LOG, "Data Base System was shut down at %s", + elog(LOG, "Data Base System was shutted down at %s", str_time(ControlFile->time)); else if (ControlFile->state == DB_SHUTDOWNING) elog(LOG, "Data Base System was interrupted when shutting down at %s", |