From 70eb33dcd509af1763997f3cb3ce55d29f1ea320 Mon Sep 17 00:00:00 2001 From: jcoleman Date: Mon, 5 Jun 2023 18:08:49 +0000 Subject: [PATCH v28 2/2] Testing: attempt logging plan on ever CFI call Co-authored-by: James Coleman --- src/include/miscadmin.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index f805daec16..c6c6ffd204 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -118,9 +118,11 @@ extern void ProcessInterrupts(void); unlikely(InterruptPending)) #endif +extern void ProcessLogQueryPlanInterrupt(void); /* Service interrupt, if one is pending and it's safe to service it now */ #define CHECK_FOR_INTERRUPTS() \ do { \ + ProcessLogQueryPlanInterrupt(); \ if (INTERRUPTS_PENDING_CONDITION()) \ ProcessInterrupts(); \ } while(0) -- 2.20.1