liukun4515 commented on code in PR #3380:
URL: https://github.com/apache/arrow-datafusion/pull/3380#discussion_r970198755
##########
datafusion/core/src/physical_plan/file_format/parquet.rs:
##########
@@ -358,6 +397,21 @@ impl FileOpener for ParquetOpener {
adapted_projections.iter().cloned(),
);
+ if let Some(predicate) = pushdown_filters
+ .then(|| pruning_predicate.as_ref().map(|p| p.logical_expr()))
+ .flatten()
+ {
+ if let Ok(Some(filter)) = build_row_filter(
Review Comment:
if there is an error when build the row filter, why not throw the error out?
--
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]