diff options
Diffstat (limited to 'src/include/access/xlogutils.h')
-rw-r--r-- | src/include/access/xlogutils.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/access/xlogutils.h b/src/include/access/xlogutils.h index 952c7f22e98..b2d5c3be0f1 100644 --- a/src/include/access/xlogutils.h +++ b/src/include/access/xlogutils.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/access/xlogutils.h,v 1.23 2008/01/01 19:45:56 momjian Exp $ + * $PostgreSQL: pgsql/src/include/access/xlogutils.h,v 1.24 2008/06/12 09:12:31 heikki Exp $ */ #ifndef XLOG_UTILS_H #define XLOG_UTILS_H @@ -15,15 +15,15 @@ #include "utils/rel.h" -extern void XLogInitRelationCache(void); extern void XLogCheckInvalidPages(void); -extern void XLogCloseRelationCache(void); -extern Relation XLogOpenRelation(RelFileNode rnode); extern void XLogDropRelation(RelFileNode rnode); extern void XLogDropDatabase(Oid dbid); extern void XLogTruncateRelation(RelFileNode rnode, BlockNumber nblocks); -extern Buffer XLogReadBuffer(Relation reln, BlockNumber blkno, bool init); +extern Buffer XLogReadBuffer(RelFileNode rnode, BlockNumber blkno, bool init); + +extern Relation CreateFakeRelcacheEntry(RelFileNode rnode); +extern void FreeFakeRelcacheEntry(Relation fakerel); #endif |