Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc7d47ab

Browse files
committed
Fix typo in DEBUG message, introduced by recent WAL refactoring.
Fujii Masao
1 parenta6427f1 commitc7d47ab

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)

[8]ページ先頭

©2009-2025 Movatter.jp