Skip to content

Commit c7d47ab

Browse files
committed
Fix typo in DEBUG message, introduced by recent WAL refactoring.
Fujii Masao
1 parent a6427f1 commit c7d47ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/replication/walsender.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -612,9 +612,9 @@ ProcessStandbyReplyMessage(void)
612612
pq_copymsgbytes(&reply_message, (char *) &reply, sizeof(StandbyReplyMessage));
613613

614614
elog(DEBUG2, "write %X/%X flush %X/%X apply %X/%X",
615-
(uint32) (reply.write << 32), (uint32) reply.write,
616-
(uint32) (reply.flush << 32), (uint32) reply.flush,
617-
(uint32) (reply.apply << 32), (uint32) reply.apply);
615+
(uint32) (reply.write >> 32), (uint32) reply.write,
616+
(uint32) (reply.flush >> 32), (uint32) reply.flush,
617+
(uint32) (reply.apply >> 32), (uint32) reply.apply);
618618

619619
/*
620620
* Update shared state for this WalSender process based on reply data from

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy