Handle interrupts while waiting on Append's async subplans

Heikki Linnakangas <heikki.linnakangas@iki.fi>

Commit: d2fb076bec06dafd6922669eed826191c01fa9c6
Author: Heikki Linnakangas <heikki.linnakangas@iki.fi>
Date: 2025-03-12T18:53:25Z
Releases: 14.18
Handle interrupts while waiting on Append's async subplans

We did not wake up on interrupts while waiting on async events on an
async-capable append node. For example, if you tried to cancel the
query, nothing would happen until one of the async subplans becomes
readable. To fix, add WL_LATCH_SET to the WaitEventSet.

Backpatch down to v14 where async Append execution was introduced.

Discussion: https://www.postgresql.org/message-id/37a40570-f558-40d3-b5ea-5c2079b3b30b@iki.fi

Files

PathChange+/−
src/backend/executor/nodeAppend.c modified +25 −3

Discussion