diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-06-08 15:50:28 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-06-08 15:50:28 +0000 |
| commit | f5b2f60bd1084e218358adba04604147e5429233 (patch) | |
| tree | 276b7d36fa97284ef5b37e53f488e6f3532b78d7 /src/include/access/xlog.h | |
| parent | 593badd30b09c6bc11930d4a26ff70830a5a9092 (diff) | |
| download | postgresql-f5b2f60bd1084e218358adba04604147e5429233.tar.gz | |
Change WAL-logging scheme for multixacts to be more like regular
transaction IDs, rather than like subtrans; in particular, the information
now survives a database restart. Per previous discussion, this is
essential for PITR log shipping and for 2PC.
Diffstat (limited to 'src/include/access/xlog.h')
| -rw-r--r-- | src/include/access/xlog.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/access/xlog.h b/src/include/access/xlog.h index 7547d7f5b9..ead4619b02 100644 --- a/src/include/access/xlog.h +++ b/src/include/access/xlog.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/access/xlog.h,v 1.64 2005/06/06 20:22:58 tgl Exp $ + * $PostgreSQL: pgsql/src/include/access/xlog.h,v 1.65 2005/06/08 15:50:28 tgl Exp $ */ #ifndef XLOG_H #define XLOG_H @@ -165,7 +165,6 @@ extern void ShutdownXLOG(int code, Datum arg); extern void InitXLOGAccess(void); extern void CreateCheckPoint(bool shutdown, bool force); extern void XLogPutNextOid(Oid nextOid); -extern void XLogPutNextMultiXactId(MultiXactId multi); extern XLogRecPtr GetRedoRecPtr(void); #endif /* XLOG_H */ |
