|
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.28 2000/11/20 05:18:39 vadim Exp $ |
| 9 | + * $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.29 2000/11/21 02:11:06 vadim Exp $ |
10 | 10 | *
|
11 | 11 | *-------------------------------------------------------------------------
|
12 | 12 | */
|
@@ -1294,6 +1294,10 @@ BootStrapXLOG()
|
1294 | 1294 | checkPoint.nextOid=BootstrapObjectIdData;
|
1295 | 1295 | checkPoint.ThisStartUpID=0;
|
1296 | 1296 |
|
| 1297 | +ShmemVariableCache->nextXid=checkPoint.nextXid; |
| 1298 | +ShmemVariableCache->nextOid=checkPoint.nextOid; |
| 1299 | +ShmemVariableCache->oidCount=0; |
| 1300 | + |
1297 | 1301 | #ifdefXLOG
|
1298 | 1302 |
|
1299 | 1303 | memset(buffer,0,BLCKSZ);
|
|