Skip to content

Commit 5cc0be5

Browse files
authored
Disable failing benchmark query (#17809)
1 parent 63ca0e1 commit 5cc0be5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

datafusion/core/benches/sql_planner.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -664,6 +664,9 @@ fn criterion_benchmark(c: &mut Criterion) {
664664
};
665665

666666
let raw_tpcds_sql_queries = (1..100)
667+
// skip query 75 until it is fixed
668+
// https://github.com/apache/datafusion/issues/17801
669+
.filter(|q| *q != 75)
667670
.map(|q| std::fs::read_to_string(format!("{tests_path}tpc-ds/{q}.sql")).unwrap())
668671
.collect::<Vec<_>>();
669672

0 commit comments

Comments
 (0)