adriangb commented on code in PR #15769: URL: https://github.com/apache/datafusion/pull/15769#discussion_r2052755734
########## datafusion/datasource-parquet/src/source.rs: ########## @@ -589,4 +559,49 @@ impl FileSource for ParquetSource { } } } + + fn try_pushdown_filters( + &self, + fd: FilterDescription, + config: &datafusion_common::config::ConfigOptions, + ) -> datafusion_common::Result<FilterPushdownResult<Arc<dyn FileSource>>> { + let Some(file_schema) = self.file_schema.clone() else { Review Comment: I think they always end up with a schema now, but the current APIs don't require it via the constructor and instead it gets passed in via `FileScanConfigBuilder`. I tried piping it into the constructor but makes things difficult, there's APIs that rely on `ParquetSource::default()` and such. So TLDR is it's a bit gross but this is the least chrun way to do it and we can always come back later and clean the rest up. -- 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