Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 3030903

Browse files
committed
Replace straggling uses of ReadRecPtr/EndRecPtr.
d2ddfa6 removed ReadRecPtr/EndRecPtr, but two uses within an #ifdef WAL_DEBUG escaped. Discussion: https://postgr.es/m/20211124231206.gbadj5bblcljb6d5@alap3.anarazel.de
1 parent 4ac452e commit 3030903

File tree

1 file changed

+2
-2
lines changed
  • src/backend/access/transam

1 file changed

+2
-2
lines changed

src/backend/access/transam/xlog.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -7577,8 +7577,8 @@ StartupXLOG(void)
75777577

75787578
initStringInfo(&buf);
75797579
appendStringInfo(&buf, "REDO @ %X/%X; LSN %X/%X: ",
7580-
LSN_FORMAT_ARGS(ReadRecPtr),
7581-
LSN_FORMAT_ARGS(EndRecPtr));
7580+
LSN_FORMAT_ARGS(xlogreader->ReadRecPtr),
7581+
LSN_FORMAT_ARGS(xlogreader->EndRecPtr));
75827582
xlog_outrec(&buf, xlogreader);
75837583
appendStringInfoString(&buf, " - ");
75847584
xlog_outdesc(&buf, xlogreader);

0 commit comments

Comments
 (0)