Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 7e12256

Browse files
committed
Force track_io_timing off in explain.sql to avoid failures when enabled.
Discussion: https://postgr.es/m/20201029231037.rkxo57ugnuchykpu@alap3.anarazel.de
1 parent 02fea8f commit 7e12256

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

src/test/regress/expected/explain.out

+5-2
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,12 @@ 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
50+
-- Disable JIT, or we'll get different output on machines where that's been
51+
-- forced on
5252
set jit = off;
53+
-- Similarly, disable track_io_timing, to avoid output differences when
54+
-- enabled.
55+
set track_io_timing = off;
5356
-- Simple cases
5457
select explain_filter('explain select * from int8_tbl i8');
5558
explain_filter

src/test/regress/sql/explain.sql

+5-2
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,13 @@ begin
5151
end;
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
5656
set 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

0 commit comments

Comments
 (0)