diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/include/access/xlog_internal.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/include/access/xlog_internal.h b/src/include/access/xlog_internal.h index 0acebd4e287..1443f96998f 100644 --- a/src/include/access/xlog_internal.h +++ b/src/include/access/xlog_internal.h @@ -120,17 +120,6 @@ typedef XLogLongPageHeaderData *XLogLongPageHeader; (dest) = (segno) * XLOG_SEG_SIZE + (offset) /* - * Macros for manipulating XLOG pointers - */ - -/* Align a record pointer to next page */ -#define NextLogPage(recptr) \ - do { \ - if ((recptr) % XLOG_BLCKSZ != 0) \ - XLByteAdvance(recptr, (XLOG_BLCKSZ - (recptr) % XLOG_BLCKSZ)); \ - } while (0) - -/* * Compute ID and segment from an XLogRecPtr. * * For XLByteToSeg, do the computation at face value. For XLByteToPrevSeg, |