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.
pull/68/head
Tom Lane 4 years ago
parent 0e1275fb07
commit 674f6fe8e6
  1. 3
      src/test/regress/expected/explain.out
  2. 5
      src/test/regress/sql/explain.sql

@ -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

@ -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');

Loading…
Cancel
Save