|
6 | 6 | * Portions Copyright (c) 1996-2000, PostgreSQL, Inc |
7 | 7 | * Portions Copyright (c) 1994, Regents of the University of California |
8 | 8 | * |
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 $ |
10 | 10 | * |
11 | 11 | *------------------------------------------------------------------------- |
12 | 12 | */ |
@@ -1293,6 +1293,7 @@ BootStrapXLOG() |
1293 | 1293 | checkPoint.nextXid = FirstTransactionId; |
1294 | 1294 | checkPoint.nextOid = BootstrapObjectIdData; |
1295 | 1295 | checkPoint.ThisStartUpID = 0; |
| 1296 | + checkPoint.Shutdown = true; |
1296 | 1297 |
|
1297 | 1298 | ShmemVariableCache->nextXid = checkPoint.nextXid; |
1298 | 1299 | ShmemVariableCache->nextOid = checkPoint.nextOid; |
@@ -1425,7 +1426,7 @@ StartupXLOG() |
1425 | 1426 | ControlFile->catalog_version_no, CATALOG_VERSION_NO); |
1426 | 1427 |
|
1427 | 1428 | 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", |
1429 | 1430 | str_time(ControlFile->time)); |
1430 | 1431 | else if (ControlFile->state == DB_SHUTDOWNING) |
1431 | 1432 | elog(LOG, "Data Base System was interrupted when shutting down at %s", |
|
0 commit comments