Stabilize output of new regression test.

Commit 48c5c9068 failed to allow for buildfarm animals that
force jit = on.  I'm surprised that this hasn't come up
elsewhere in explain.sql, so turn it off for that whole
test script not just the one new test case.

Per buildfarm.
This commit is contained in:
Tom Lane 2021-07-27 12:49:40 -04:00
parent 0e1275fb07
commit 674f6fe8e6
2 changed files with 8 additions and 0 deletions

View File

@ -47,6 +47,9 @@ begin
return data::jsonb;
end;
$$;
-- Also, disable JIT, or we'll get different output on machines
-- where that's been forced on
set jit = off;
-- Simple cases
select explain_filter('explain select * from int8_tbl i8');
explain_filter

View File

@ -51,6 +51,11 @@ begin
end;
$$;
-- Also, disable JIT, or we'll get different output on machines
-- where that's been forced on
set jit = off;
-- Simple cases
select explain_filter('explain select * from int8_tbl i8');