andygrove commented on code in PR #1710:
URL: https://github.com/apache/datafusion-comet/pull/1710#discussion_r2098163102
##########
native/core/src/parquet/parquet_exec.rs:
##########
@@ -78,8 +78,8 @@ pub(crate) fn init_datasource_exec(
))
});
- if let (Some(filter), Some(data_schema)) = (cnf_data_filters,
&data_schema) {
- parquet_source =
parquet_source.with_predicate(Arc::clone(data_schema), filter);
+ if let Some(filter) = cnf_data_filters {
+ parquet_source = parquet_source.with_predicate(filter);
Review Comment:
There were changes to the predicate push-down API
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]