v3-0002-Fix-a-comment-in-walreceiver.c.patch
application/octet-stream
Filename: v3-0002-Fix-a-comment-in-walreceiver.c.patch
Type: application/octet-stream
Part: 1
Patch
Format: format-patch
Series: patch v3-0002
Subject: Fix a comment in walreceiver.c
| File | + | − |
|---|---|---|
| src/backend/replication/walreceiver.c | 2 | 2 |
From 50fddedb1c94e720a5858dc61cf3af42c1580fd5 Mon Sep 17 00:00:00 2001 From: Shinya Kato <shinya11.kato@gmail.com> 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 <shinya11.kato@gmail.com> 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