1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-23 03:21:12 +03:00

pg_overexplain: SET jit=off when running tests.

Per buildfarm.
This commit is contained in:
Robert Haas
2025-03-26 15:43:25 -04:00
parent de65c4dade
commit 47a1f076a7
2 changed files with 7 additions and 0 deletions

View File

@ -1,6 +1,9 @@
-- These tests display internal details that would not be stable under -- These tests display internal details that would not be stable under
-- debug_parallel_query, so make sure that option is disabled. -- debug_parallel_query, so make sure that option is disabled.
SET debug_parallel_query = off; 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. -- These options do not exist, so these queries should all fail.
EXPLAIN (DEBUFF) SELECT 1; EXPLAIN (DEBUFF) SELECT 1;
ERROR: unrecognized EXPLAIN option "debuff" ERROR: unrecognized EXPLAIN option "debuff"

View File

@ -2,6 +2,10 @@
-- debug_parallel_query, so make sure that option is disabled. -- debug_parallel_query, so make sure that option is disabled.
SET debug_parallel_query = off; 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. -- These options do not exist, so these queries should all fail.
EXPLAIN (DEBUFF) SELECT 1; EXPLAIN (DEBUFF) SELECT 1;
EXPLAIN (DEBUG) SELECT 1; EXPLAIN (DEBUG) SELECT 1;