diff options
Diffstat (limited to 'src/include/access/xlogdefs.h')
-rw-r--r-- | src/include/access/xlogdefs.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/include/access/xlogdefs.h b/src/include/access/xlogdefs.h index 153d0de22a9..f3acb2f56ee 100644 --- a/src/include/access/xlogdefs.h +++ b/src/include/access/xlogdefs.h @@ -29,20 +29,6 @@ typedef uint64 XLogRecPtr; #define XLogRecPtrIsInvalid(r) ((r) == InvalidXLogRecPtr) /* - * Macros for comparing XLogRecPtrs - */ -#define XLByteLT(a, b) ((a) < (b)) -#define XLByteLE(a, b) ((a) <= (b)) -#define XLByteEQ(a, b) ((a) == (b)) - - -/* - * Macro for advancing a record pointer by the specified number of bytes. - */ -#define XLByteAdvance(recptr, nbytes) \ - (recptr) += nbytes \ - -/* * XLogSegNo - physical log file sequence number. */ typedef uint64 XLogSegNo; |