File tree 1 file changed +4
-2
lines changed
native/core/src/execution/datafusion
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1269,7 +1269,8 @@ impl PhysicalPlanner {
1269
1269
"min" ,
1270
1270
false ,
1271
1271
false ,
1272
- ) . map_err ( |e| ExecutionError :: DataFusionError ( e. to_string ( ) ) )
1272
+ )
1273
+ . map_err ( |e| ExecutionError :: DataFusionError ( e. to_string ( ) ) )
1273
1274
}
1274
1275
AggExprStruct :: Max ( expr) => {
1275
1276
let child = self . create_expr ( expr. child . as_ref ( ) . unwrap ( ) , schema. clone ( ) ) ?;
@@ -1285,7 +1286,8 @@ impl PhysicalPlanner {
1285
1286
"max" ,
1286
1287
false ,
1287
1288
false ,
1288
- ) . map_err ( |e| ExecutionError :: DataFusionError ( e. to_string ( ) ) )
1289
+ )
1290
+ . map_err ( |e| ExecutionError :: DataFusionError ( e. to_string ( ) ) )
1289
1291
}
1290
1292
AggExprStruct :: Sum ( expr) => {
1291
1293
let child = self . create_expr ( expr. child . as_ref ( ) . unwrap ( ) , schema. clone ( ) ) ?;
You can’t perform that action at this time.
0 commit comments