File tree 2 files changed +10
-4
lines changed
2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 47
47
return data::jsonb;
48
48
end;
49
49
$$;
50
- -- Also, disable JIT, or we'll get different output on machines
51
- -- where that's been forced on
50
+ -- Disable JIT, or we'll get different output on machines where that's been
51
+ -- forced on
52
52
set jit = off;
53
+ -- Similarly, disable track_io_timing, to avoid output differences when
54
+ -- enabled.
55
+ set track_io_timing = off;
53
56
-- Simple cases
54
57
select explain_filter('explain select * from int8_tbl i8');
55
58
explain_filter
Original file line number Diff line number Diff line change @@ -51,10 +51,13 @@ begin
51
51
end;
52
52
$$;
53
53
54
- -- Also, disable JIT, or we'll get different output on machines
55
- -- where that's been forced on
54
+ -- Disable JIT, or we'll get different output on machines where that's been
55
+ -- forced on
56
56
set jit = off;
57
57
58
+ -- Similarly, disable track_io_timing, to avoid output differences when
59
+ -- enabled.
60
+ set track_io_timing = off;
58
61
59
62
-- Simple cases
60
63
You can’t perform that action at this time.
0 commit comments