alamb commented on code in PR #15301: URL: https://github.com/apache/datafusion/pull/15301#discussion_r2021737787
########## datafusion/physical-plan/src/filter.rs: ########## @@ -433,6 +433,22 @@ impl ExecutionPlan for FilterExec { } try_embed_projection(projection, self) } + + fn push_down_filter( + &self, + expr: Arc<dyn PhysicalExpr>, + ) -> Result<Option<Arc<dyn ExecutionPlan>>> { + let mut input = Arc::clone(&self.input); + if let Some(new_input) = input.push_down_filter(Arc::clone(&expr))? { Review Comment: Here is one way @crepererum we implemented filter pushdown in influxdb: https://github.com/influxdata/influxdb3_core/blob/main/iox_query/src/physical_optimizer/predicate_pushdown.rs -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org