Commit c7d47abd authored by Robert Haas's avatar Robert Haas

Fix typo in DEBUG message, introduced by recent WAL refactoring.

Fujii Masao
parent a6427f1f
...@@ -612,9 +612,9 @@ ProcessStandbyReplyMessage(void) ...@@ -612,9 +612,9 @@ ProcessStandbyReplyMessage(void)
pq_copymsgbytes(&reply_message, (char *) &reply, sizeof(StandbyReplyMessage)); pq_copymsgbytes(&reply_message, (char *) &reply, sizeof(StandbyReplyMessage));
elog(DEBUG2, "write %X/%X flush %X/%X apply %X/%X", elog(DEBUG2, "write %X/%X flush %X/%X apply %X/%X",
(uint32) (reply.write << 32), (uint32) reply.write, (uint32) (reply.write >> 32), (uint32) reply.write,
(uint32) (reply.flush << 32), (uint32) reply.flush, (uint32) (reply.flush >> 32), (uint32) reply.flush,
(uint32) (reply.apply << 32), (uint32) reply.apply); (uint32) (reply.apply >> 32), (uint32) reply.apply);
/* /*
* Update shared state for this WalSender process based on reply data from * Update shared state for this WalSender process based on reply data from
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment