Skip to content

Commit 034b71a

Browse files
committed
fix style
1 parent f609f02 commit 034b71a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

native/core/src/execution/datafusion/planner.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -1269,7 +1269,8 @@ impl PhysicalPlanner {
12691269
"min",
12701270
false,
12711271
false,
1272-
).map_err(|e| ExecutionError::DataFusionError(e.to_string()))
1272+
)
1273+
.map_err(|e| ExecutionError::DataFusionError(e.to_string()))
12731274
}
12741275
AggExprStruct::Max(expr) => {
12751276
let child = self.create_expr(expr.child.as_ref().unwrap(), schema.clone())?;
@@ -1285,7 +1286,8 @@ impl PhysicalPlanner {
12851286
"max",
12861287
false,
12871288
false,
1288-
).map_err(|e| ExecutionError::DataFusionError(e.to_string()))
1289+
)
1290+
.map_err(|e| ExecutionError::DataFusionError(e.to_string()))
12891291
}
12901292
AggExprStruct::Sum(expr) => {
12911293
let child = self.create_expr(expr.child.as_ref().unwrap(), schema.clone())?;

0 commit comments

Comments
 (0)