File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
datafusion/proto/src/physical_plan Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -489,7 +489,13 @@ impl AsExecutionPlan for protobuf::PhysicalPlanNode {
489489
490490 // TODO: approx_percentile_cont and approx_percentile_cont_weight are not supported for UDAF from protobuf yet.
491491 // TODO: `order by` is not supported for UDAF yet
492- AggregateExprBuilder :: new ( agg_udf, input_phy_expr) . schema ( Arc :: clone ( & physical_schema) ) . name ( name) . with_ignore_nulls ( agg_node. ignore_nulls ) . with_distinct ( agg_node. distinct ) . build ( )
492+ // https://github.com/apache/datafusion/issues/11804
493+ AggregateExprBuilder :: new ( agg_udf, input_phy_expr)
494+ . schema ( Arc :: clone ( & physical_schema) )
495+ . name ( name)
496+ . with_ignore_nulls ( agg_node. ignore_nulls )
497+ . with_distinct ( agg_node. distinct )
498+ . build ( )
493499 }
494500 }
495501 } ) . transpose ( ) ?. ok_or_else ( || {
You can’t perform that action at this time.
0 commit comments