diff options
Diffstat (limited to 'src/include/jit/jit.h')
-rw-r--r-- | src/include/jit/jit.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/jit/jit.h b/src/include/jit/jit.h index 703c5011da..efcd6a52cf 100644 --- a/src/include/jit/jit.h +++ b/src/include/jit/jit.h @@ -21,6 +21,7 @@ #define PGJIT_OPT3 1 << 1 /* reserved for PGJIT_INLINE */ #define PGJIT_EXPR 1 << 3 +#define PGJIT_DEFORM 1 << 4 typedef struct JitContext @@ -67,6 +68,7 @@ extern bool jit_debugging_support; extern bool jit_dump_bitcode; extern bool jit_expressions; extern bool jit_profiling_support; +extern bool jit_tuple_deforming; extern double jit_above_cost; extern double jit_optimize_above_cost; |