8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6427f1 commit c7d47abCopy full SHA for c7d47ab
src/backend/replication/walsender.c
@@ -612,9 +612,9 @@ ProcessStandbyReplyMessage(void)
612
pq_copymsgbytes(&reply_message, (char *) &reply, sizeof(StandbyReplyMessage));
613
614
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);
+ (uint32) (reply.write >> 32), (uint32) reply.write,
+ (uint32) (reply.flush >> 32), (uint32) reply.flush,
+ (uint32) (reply.apply >> 32), (uint32) reply.apply);
618
619
/*
620
* Update shared state for this WalSender process based on reply data from
0 commit comments