Skip to content

Commit 8e2f8ee

Browse files
committed
Update prioity
1 parent f5acc68 commit 8e2f8ee

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

datafusion/sqllogictest/src/test_file.rs

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -107,28 +107,28 @@ impl Ord for TestFile {
107107
/// $ cargo test --profile=ci --test sqllogictests -- --timing-summary top
108108
/// ...
109109
/// Per-file elapsed summary (deterministic):
110-
/// 1. 5.375s push_down_filter_regression.slt
111-
/// 2. 3.174s aggregate.slt
112-
/// 3. 3.158s imdb.slt
113-
/// 4. 2.793s joins.slt
114-
/// 5. 2.505s array.slt
115-
/// 6. 2.265s aggregate_skip_partial.slt
116-
/// 7. 2.260s window.slt
117-
/// 8. 1.677s group_by.slt
118-
/// 9. 0.973s datetime/timestamps.slt
119-
/// 10. 0.822s cte.slt
110+
/// 1. 3.568s aggregate.slt
111+
/// 2. 3.464s joins.slt
112+
/// 3. 3.336s imdb.slt
113+
/// 4. 3.085s push_down_filter_regression.slt
114+
/// 5. 2.926s aggregate_skip_partial.slt
115+
/// 6. 2.453s array.slt
116+
/// 7. 2.399s window.slt
117+
/// 8. 2.198s group_by.slt
118+
/// 9. 1.281s clickbench.slt
119+
/// 10. 1.058s datetime/timestamps.slt
120120
/// ```
121121
const TEST_PRIORITY_ENTRIES: &[&str] = &[
122-
"push_down_filter_regression.slt", // longest running, so run first.
123-
"aggregate.slt",
122+
"aggregate.slt", // longest-running files go first
124123
"joins.slt",
125124
"imdb.slt",
126-
"array.slt",
125+
"push_down_filter_regression.slt",
127126
"aggregate_skip_partial.slt",
127+
"array.slt",
128128
"window.slt",
129129
"group_by.slt",
130+
"clickbench.slt",
130131
"datetime/timestamps.slt",
131-
"cte.slt",
132132
];
133133

134134
/// Default priority for tests not in the priority map. Tests with lower

0 commit comments

Comments
 (0)