v14-0007-Reset-InstallXLogFileSegmentActive-after-walrece.patch
text/x-diff
Filename: v14-0007-Reset-InstallXLogFileSegmentActive-after-walrece.patch
Type: text/x-diff
Part: 6
Patch
Format: format-patch
Series: patch v14-0007
Subject: Reset InstallXLogFileSegmentActive after walreceiver self-initiated exit.
| File | + | − |
|---|---|---|
| src/backend/access/transam/xlog.c | 1 | 2 |
From c2d49a28a5d1a0e48c7a9edf97c481d984af98e9 Mon Sep 17 00:00:00 2001 From: Noah Misch <noah@leadboat.com> Date: Thu, 15 Sep 2022 06:45:23 -0700 Subject: [PATCH v14 7/7] Reset InstallXLogFileSegmentActive after walreceiver self-initiated exit. After commit cc2c7d65fc27e877c9f407587b0b92d46cd6dd16 added this flag, failure to reset it caused assertion failures. In non-assert builds, it made the system fail to achieve the objectives listed in that commit; chiefly, we might emit a spurious log message. Back-patch to v15, where that commit first appeared. Bharath Rupireddy and Kyotaro Horiguchi. Reviewed by Dilip Kumar, Nathan Bossart and Michael Paquier. Reported by Dilip Kumar. Discussion: https://postgr.es/m/CAFiTN-sE3ry=ycMPVtC+Djw4Fd7gbUGVv_qqw6qfzp=JLvqT3g@mail.gmail.com --- src/backend/access/transam/xlog.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index c5fe7e6fa4cc..9ce4297e3de6 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -12799,8 +12799,7 @@ WaitForWALToBecomeAvailable(XLogRecPtr RecPtr, bool randAccess, * walreceiver is not active, so that it won't overwrite * WAL that we restore from archive. */ - if (WalRcvStreaming()) - XLogShutdownWalRcv(); + XLogShutdownWalRcv(); /* * Before we sleep, re-scan for possible new timelines if -- 2.47.2