File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -632,8 +632,10 @@ impl FileSource for ParquetSource {
632
632
// If pushdown_filters is false we tell our parents that they still have to handle the filters,
633
633
// even if we updated the predicate to include the filters (they will only be used for stats pruning).
634
634
if !pushdown_filters {
635
- return Ok ( FilterPushdownPropagation :: with_filters ( filters. make_unsupported ( ) )
636
- . with_updated_node ( source) ) ;
635
+ return Ok ( FilterPushdownPropagation :: with_filters (
636
+ filters. make_unsupported ( ) ,
637
+ )
638
+ . with_updated_node ( source) ) ;
637
639
}
638
640
Ok ( FilterPushdownPropagation :: with_filters ( filters) . with_updated_node ( source) )
639
641
}
Original file line number Diff line number Diff line change @@ -34,7 +34,9 @@ pub enum PredicateSupport {
34
34
impl PredicateSupport {
35
35
pub fn into_inner ( self ) -> Arc < dyn PhysicalExpr > {
36
36
match self {
37
- PredicateSupport :: Supported ( expr) | PredicateSupport :: Unsupported ( expr) => expr,
37
+ PredicateSupport :: Supported ( expr) | PredicateSupport :: Unsupported ( expr) => {
38
+ expr
39
+ }
38
40
}
39
41
}
40
42
}
You can’t perform that action at this time.
0 commit comments