]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Handle interrupts while waiting on Append's async subplans
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 12 Mar 2025 18:53:09 +0000 (20:53 +0200)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 12 Mar 2025 18:53:19 +0000 (20:53 +0200)
commit004dbbd72f7505105a10d4e8ccb9a5a5d87125ed
tree8e31fe872d973f6500d49a96fe9cf0ca540fac91
parentfec43428c9662ad0217308529ef6cdd211e8b478
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
src/backend/executor/nodeAppend.c