mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08: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));
|
||||
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user