From 50fddedb1c94e720a5858dc61cf3af42c1580fd5 Mon Sep 17 00:00:00 2001 From: Shinya Kato Date: Wed, 11 Mar 2026 11:28:00 +0900 Subject: [PATCH v3 2/2] Fix a comment in walreceiver.c Remove outdated reference to "oldest xmin" in XLogWalRcvSendReply() comment, since the function no longer reports xmin. Author: Shinya Kato Reviewed-by: Discussion: https://postgr.es/m/ --- src/backend/replication/walreceiver.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/walreceiver.c b/src/backend/replication/walreceiver.c index fabe3c73034..bd9a1377e1c 100644 --- a/src/backend/replication/walreceiver.c +++ b/src/backend/replication/walreceiver.c @@ -1107,8 +1107,8 @@ XLogWalRcvClose(XLogRecPtr recptr, TimeLineID tli) } /* - * Send reply message to primary, indicating our current WAL locations, oldest - * xmin and the current time. + * Send reply message to primary, indicating our current WAL locations and the + * current time. * * If 'force' is not set, the message is only sent if enough time has * passed since last status update to reach wal_receiver_status_interval. -- 2.47.3