mirror of
https://github.com/postgres/postgres.git
synced 2025-05-02 11:44:50 +03:00
Fix typo in DEBUG message, introduced by recent WAL refactoring.
Fujii Masao
This commit is contained in:
parent
a6427f1f47
commit
c7d47abd04
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user