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:
@ -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"
|
||||||
|
@ -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;
|
||||||
|
Reference in New Issue
Block a user