Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 674f6fe

Browse files
committed
Stabilize output of new regression test.
Commit 48c5c90 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.
1 parent 0e1275f commit 674f6fe

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/test/regress/expected/explain.out

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ begin
4747
return data::jsonb;
4848
end;
4949
$$;
50+
-- Also, disable JIT, or we'll get different output on machines
51+
-- where that's been forced on
52+
set jit = off;
5053
-- Simple cases
5154
select explain_filter('explain select * from int8_tbl i8');
5255
explain_filter

src/test/regress/sql/explain.sql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ begin
5151
end;
5252
$$;
5353

54+
-- Also, disable JIT, or we'll get different output on machines
55+
-- where that's been forced on
56+
set jit = off;
57+
58+
5459
-- Simple cases
5560

5661
select explain_filter('explain select * from int8_tbl i8');

0 commit comments

Comments
 (0)