Skip to content
Snippets Groups Projects
Commit c7d47abd authored by Robert Haas's avatar Robert Haas
Browse files

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

Fujii Masao
parent a6427f1f
No related branches found
No related tags found
No related merge requests found
...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment