We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63ca0e1 commit 5cc0be5Copy full SHA for 5cc0be5
datafusion/core/benches/sql_planner.rs
@@ -664,6 +664,9 @@ fn criterion_benchmark(c: &mut Criterion) {
664
};
665
666
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)
670
.map(|q| std::fs::read_to_string(format!("{tests_path}tpc-ds/{q}.sql")).unwrap())
671
.collect::<Vec<_>>();
672
0 commit comments