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 554bb3b commit f753429Copy full SHA for f753429
src/include/access/heapam_xlog.h
@@ -349,6 +349,8 @@ typedef struct xl_heap_new_cid
349
xl_heaptid target;
350
} xl_heap_new_cid;
351
352
+#define SizeOfHeapNewCid (offsetof(xl_heap_new_cid, target) + SizeOfHeapTid)
353
+
354
/* logical rewrite xlog record header */
355
typedef struct xl_heap_rewrite_mapping
356
{
@@ -360,8 +362,6 @@ typedef struct xl_heap_rewrite_mapping
360
362
XLogRecPtr start_lsn; /* Insert LSN at begin of rewrite */
361
363
} xl_heap_rewrite_mapping;
364
-#define SizeOfHeapNewCid (offsetof(xl_heap_new_cid, target) + SizeOfHeapTid)
-
365
extern void HeapTupleHeaderAdvanceLatestRemovedXid(HeapTupleHeader tuple,
366
TransactionId *latestRemovedXid);
367
0 commit comments