diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 07b0d590696934a362d43b6f2fc495edcd6462e0..906e7ef1d7ee0b1929b5b0423c8c4da9b253182b 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -2807,6 +2807,16 @@ RecoveryConflictInterrupt(ProcSignalReason reason) } } + /* + * Set the process latch. This function essentially emulates signal + * handlers like die() and StatementCancelHandler() and it seems prudent + * to behave similarly as they do. Alternatively all plain backend code + * waiting on that latch, expecting to get interrupted by query cancels et + * al., would also need to set set_latch_on_sigusr1. + */ + if (MyProc) + SetLatch(&MyProc->procLatch); + errno = save_errno; }