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 925ce77 commit eaa1f72Copy full SHA for eaa1f72
src/include/access/xlog_internal.h
@@ -119,17 +119,6 @@ typedef XLogLongPageHeaderData *XLogLongPageHeader;
119
#define XLogSegNoOffsetToRecPtr(segno, offset, dest) \
120
(dest) = (segno) * XLOG_SEG_SIZE + (offset)
121
122
-/*
123
- * Macros for manipulating XLOG pointers
124
- */
125
-
126
-/* Align a record pointer to next page */
127
-#define NextLogPage(recptr) \
128
- do { \
129
- if ((recptr) % XLOG_BLCKSZ != 0) \
130
- XLByteAdvance(recptr, (XLOG_BLCKSZ - (recptr) % XLOG_BLCKSZ)); \
131
- } while (0)
132
133
/*
134
* Compute ID and segment from an XLogRecPtr.
135
*
0 commit comments