Skip to content

Commit 1d3bdbe

Browse files
authored
Minor: add ticket reference and fmt (#11805)
1 parent b4069a6 commit 1d3bdbe

File tree

1 file changed

+7
-1
lines changed
  • datafusion/proto/src/physical_plan

1 file changed

+7
-1
lines changed

datafusion/proto/src/physical_plan/mod.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff 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(|| {

0 commit comments

Comments
 (0)