File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 4747 return data::jsonb;
4848end;
4949$$;
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
5252set jit = off;
53+ -- Similarly, disable track_io_timing, to avoid output differences when
54+ -- enabled.
55+ set track_io_timing = off;
5356-- Simple cases
5457select explain_filter('explain select * from int8_tbl i8');
5558 explain_filter
Original file line number Diff line number Diff line change @@ -51,10 +51,13 @@ begin
5151end;
5252$$;
5353
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
5656set jit = off;
5757
58+ -- Similarly, disable track_io_timing, to avoid output differences when
59+ -- enabled.
60+ set track_io_timing = off;
5861
5962-- Simple cases
6063
You can’t perform that action at this time.
0 commit comments