projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cac0e36
)
Use proper format specifier %X/%X for LSN, again.
author
Fujii Masao
<fujii@postgresql.org>
Wed, 6 Apr 2016 13:20:52 +0000
(22:20 +0900)
committer
Fujii Masao
<fujii@postgresql.org>
Wed, 6 Apr 2016 13:20:52 +0000
(22:20 +0900)
Commit
cee31f5
fixed this problem, but commit
989be08
accidentally
reverted the fix.
Thomas Munro
src/backend/replication/syncrep.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/replication/syncrep.c
b/src/backend/replication/syncrep.c
index d454e7f36830d4e77902dd6c097a2043e08953f7..cb6b5e5317896159310624faf47cbace1921e7fc 100644
(file)
--- a/
src/backend/replication/syncrep.c
+++ b/
src/backend/replication/syncrep.c
@@
-474,7
+474,7
@@
SyncRepReleaseWaiters(void)
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,
numflush, (uint32) (flushPtr >> 32), (uint32) flushPtr,
numapply, (uint32) (applyPtr >> 32), (uint32) applyPtr);