pg_overexplain: SET jit=off when running tests.
authorRobert Haas <[email protected]>
Wed, 26 Mar 2025 19:43:25 +0000 (15:43 -0400)
committerRobert Haas <[email protected]>
Wed, 26 Mar 2025 19:43:25 +0000 (15:43 -0400)
Per buildfarm.

contrib/pg_overexplain/expected/pg_overexplain.out
contrib/pg_overexplain/sql/pg_overexplain.sql

index f179473d9100b7ef5e60244831651c18913c73d4..a1f9411175e347e0c9ee106ae33827a485cea861 100644 (file)
@@ -1,6 +1,9 @@
 -- These tests display internal details that would not be stable under
 -- debug_parallel_query, so make sure that option is disabled.
 SET debug_parallel_query = off;
+-- Make sure that we don't print any JIT-related information, as that
+-- would also make results unstable.
+SET jit = off;
 -- These options do not exist, so these queries should all fail.
 EXPLAIN (DEBUFF) SELECT 1;
 ERROR:  unrecognized EXPLAIN option "debuff"
index a9634e443a0d9bd835d56b89d891844ca5128df6..e715d337d010258976f08216687e86861f780e41 100644 (file)
@@ -2,6 +2,10 @@
 -- debug_parallel_query, so make sure that option is disabled.
 SET debug_parallel_query = off;
 
+-- Make sure that we don't print any JIT-related information, as that
+-- would also make results unstable.
+SET jit = off;
+
 -- These options do not exist, so these queries should all fail.
 EXPLAIN (DEBUFF) SELECT 1;
 EXPLAIN (DEBUG) SELECT 1;