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 4b0e6c6 commit 4e9f319Copy full SHA for 4e9f319
1 file changed
datafusion/core/tests/physical_optimizer/filter_pushdown.rs
@@ -1818,9 +1818,9 @@ fn col_lit_predicate(
1818
}
1819
1820
fn assert_parent_filter_remains_above_aggregate(plan: Arc<dyn ExecutionPlan>) {
1821
- let optimized = FilterPushdown::new()
1822
- .optimize(plan, &ConfigOptions::default())
1823
- .unwrap();
+ let mut config = ConfigOptions::default();
+ config.execution.parquet.pushdown_filters = true;
+ let optimized = FilterPushdown::new().optimize(plan, &config).unwrap();
1824
assert!(
1825
optimized.downcast_ref::<FilterExec>().is_some(),
1826
"parent filter must remain above aggregate"
0 commit comments