Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 2536267

Browse files
committed
misc
1 parent e8ff221 commit 2536267

File tree

1 file changed

+3
-2
lines changed
  • src/backend/access/transam

1 file changed

+3
-2
lines changed

src/backend/access/transam/xlog.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
77
* Portions Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.30 2000/11/21 09:39:56 vadim Exp $
9+
* $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.31 2000/11/21 10:17:57 vadim Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -1293,6 +1293,7 @@ BootStrapXLOG()
12931293
checkPoint.nextXid = FirstTransactionId;
12941294
checkPoint.nextOid = BootstrapObjectIdData;
12951295
checkPoint.ThisStartUpID = 0;
1296+
checkPoint.Shutdown = true;
12961297

12971298
ShmemVariableCache->nextXid = checkPoint.nextXid;
12981299
ShmemVariableCache->nextOid = checkPoint.nextOid;
@@ -1425,7 +1426,7 @@ StartupXLOG()
14251426
ControlFile->catalog_version_no, CATALOG_VERSION_NO);
14261427

14271428
if (ControlFile->state == DB_SHUTDOWNED)
1428-
elog(LOG, "Data Base System was shut down at %s",
1429+
elog(LOG, "Data Base System was shutted down at %s",
14291430
str_time(ControlFile->time));
14301431
else if (ControlFile->state == DB_SHUTDOWNING)
14311432
elog(LOG, "Data Base System was interrupted when shutting down at %s",

0 commit comments

Comments
 (0)