mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
WAL utils defs
This commit is contained in:
@ -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
|
||||||
|
Reference in New Issue
Block a user