Skip to content
Snippets Groups Projects
Commit ead9963c authored by Fujii Masao's avatar Fujii Masao
Browse files

Use proper format specifier %X/%X for LSN, again.

Commit cee31f5f fixed this problem, but commit 989be081 accidentally
reverted the fix.

Thomas Munro
parent cac0e366
No related branches found
No related tags found
No related merge requests found
...@@ -474,7 +474,7 @@ SyncRepReleaseWaiters(void) ...@@ -474,7 +474,7 @@ SyncRepReleaseWaiters(void)
LWLockRelease(SyncRepLock); LWLockRelease(SyncRepLock);
elog(DEBUG3, "released %d procs up to write %X/%X, %d procs up to flush %X/%X, %d procs up to apply %X/%x", elog(DEBUG3, "released %d procs up to write %X/%X, %d procs up to flush %X/%X, %d procs up to apply %X/%X",
numwrite, (uint32) (writePtr >> 32), (uint32) writePtr, numwrite, (uint32) (writePtr >> 32), (uint32) writePtr,
numflush, (uint32) (flushPtr >> 32), (uint32) flushPtr, numflush, (uint32) (flushPtr >> 32), (uint32) flushPtr,
numapply, (uint32) (applyPtr >> 32), (uint32) applyPtr); numapply, (uint32) (applyPtr >> 32), (uint32) applyPtr);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment