WAL utils defs

This commit is contained in:
Vadim B. Mikheev 2000-10-25 00:49:14 +00:00
parent 612f1b01f8
commit 157ff4e108
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
#ifndef XLOG_UTILS_H
#include "utils/rel.h"
extern int XLogIsOwnerOfTuple(RelFileNode hnode, ItemPointer iptr,
TransactionId xid, CommandId cid);
extern bool XLogIsValidTuple(RelFileNode hnode, ItemPointer iptr);
extern void XLogOpenLogRelation(void);
extern Buffer XLogReadBuffer(bool extend, Relation reln, BlockNumber blkno);
extern void XLogCloseRelationCache(void);
extern Relation XLogOpenRelation(bool redo, RmgrId rmid, RelFileNode rnode);
#endif