Skip to content

Commit 6d6d039

Browse files
committed
code format
1 parent 76e6007 commit 6d6d039

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

src/components/parquet_ext/src/prune/min_max.rs

+9-4
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,15 @@ fn filter_row_groups_inner(
8787
results
8888
}
8989

90-
fn logical2physical(expr: &Expr, schema: &ArrowSchema, execution_props: &ExecutionProps) -> DataFusionResult<Arc<dyn PhysicalExpr>> {
91-
schema.clone().to_dfschema().and_then(|df_schema| {
92-
create_physical_expr(expr, &df_schema, schema, execution_props)
93-
})
90+
fn logical2physical(
91+
expr: &Expr,
92+
schema: &ArrowSchema,
93+
execution_props: &ExecutionProps,
94+
) -> DataFusionResult<Arc<dyn PhysicalExpr>> {
95+
schema
96+
.clone()
97+
.to_dfschema()
98+
.and_then(|df_schema| create_physical_expr(expr, &df_schema, schema, execution_props))
9499
}
95100

96101
fn build_row_group_predicate(

0 commit comments

Comments
 (0)