8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 612f1b0 commit 157ff4eCopy full SHA for 157ff4e
src/include/access/xlogutils.h
@@ -0,0 +1,16 @@
1
+
2
+#ifndef XLOG_UTILS_H
3
4
+#include "utils/rel.h"
5
6
+extern int XLogIsOwnerOfTuple(RelFileNode hnode, ItemPointer iptr,
7
+ TransactionId xid, CommandId cid);
8
+extern bool XLogIsValidTuple(RelFileNode hnode, ItemPointer iptr);
9
10
+extern void XLogOpenLogRelation(void);
11
12
+extern Buffer XLogReadBuffer(bool extend, Relation reln, BlockNumber blkno);
13
+extern void XLogCloseRelationCache(void);
14
+extern Relation XLogOpenRelation(bool redo, RmgrId rmid, RelFileNode rnode);
15
16
+#endif
0 commit comments