diff options
Diffstat (limited to 'src/include/access/gistxlog.h')
-rw-r--r-- | src/include/access/gistxlog.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/access/gistxlog.h b/src/include/access/gistxlog.h index 9bbe4c26220..33f1c7e31b1 100644 --- a/src/include/access/gistxlog.h +++ b/src/include/access/gistxlog.h @@ -49,7 +49,7 @@ typedef struct gistxlogPageUpdate */ typedef struct gistxlogDelete { - TransactionId latestRemovedXid; + TransactionId snapshotConflictHorizon; uint16 ntodelete; /* number of deleted offsets */ /* @@ -99,10 +99,10 @@ typedef struct gistxlogPageReuse { RelFileLocator locator; BlockNumber block; - FullTransactionId latestRemovedFullXid; + FullTransactionId snapshotConflictHorizon; } gistxlogPageReuse; -#define SizeOfGistxlogPageReuse (offsetof(gistxlogPageReuse, latestRemovedFullXid) + sizeof(FullTransactionId)) +#define SizeOfGistxlogPageReuse (offsetof(gistxlogPageReuse, snapshotConflictHorizon) + sizeof(FullTransactionId)) extern void gist_redo(XLogReaderState *record); extern void gist_desc(StringInfo buf, XLogReaderState *record); |