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

Fujii Masao
This commit is contained in:
Robert Haas 2012-06-25 14:00:35 -04:00
parent a6427f1f47
commit c7d47abd04
1 changed files with 3 additions and 3 deletions

View File

@ -612,9 +612,9 @@ ProcessStandbyReplyMessage(void)
pq_copymsgbytes(&reply_message, (char *) &reply, sizeof(StandbyReplyMessage));
elog(DEBUG2, "write %X/%X flush %X/%X apply %X/%X",
(uint32) (reply.write << 32), (uint32) reply.write,
(uint32) (reply.flush << 32), (uint32) reply.flush,
(uint32) (reply.apply << 32), (uint32) reply.apply);
(uint32) (reply.write >> 32), (uint32) reply.write,
(uint32) (reply.flush >> 32), (uint32) reply.flush,
(uint32) (reply.apply >> 32), (uint32) reply.apply);
/*
* Update shared state for this WalSender process based on reply data from