You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: expected/aqo_query_stat.out
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,11 @@ SELECT true AS success FROM aqo_reset();
7
7
t
8
8
(1 row)
9
9
10
+
-- For the tests stability
11
+
SET max_parallel_maintenance_workers = 1;
12
+
SET max_parallel_workers_per_gather = 1;
13
+
SET aqo.force_collect_stat = OFF;
14
+
SET aqo.join_threshold = 0;
10
15
DROP TABLE IF EXISTS A;
11
16
NOTICE: table "a" does not exist, skipping
12
17
CREATE TABLE A AS SELECT x FROM generate_series(1, 20) as x;
@@ -64,7 +69,7 @@ SELECT count(*) FROM A JOIN B ON (A.x > B.y) WHERE A.x > 19 AND B.y < 9;
64
69
8
65
70
(1 row)
66
71
67
-
-- Ignore unstable time-related columns
72
+
-- Ignore unstable time-related columns
68
73
SELECT round_array(cardinality_error_with_aqo) AS error_aqo, round_array(cardinality_error_without_aqo) AS error_no_aqo, executions_with_aqo, executions_without_aqo FROM aqo_query_stat;