diff options
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 39b7b5b678e..79c0f68966e 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -2643,6 +2643,9 @@ die(SIGNAL_ARGS) InterruptHoldoffCount--; ProcessInterrupts(); } + + /* Interrupt any sync rep wait which is currently in progress. */ + SetLatch(&(MyProc->waitLatch)); } errno = save_errno; @@ -2681,6 +2684,9 @@ StatementCancelHandler(SIGNAL_ARGS) InterruptHoldoffCount--; ProcessInterrupts(); } + + /* Interrupt any sync rep wait which is currently in progress. */ + SetLatch(&(MyProc->waitLatch)); } errno = save_errno; |