[improvement](agg) Serialize the fixed-length aggregation results with corresponding columns instead of ColumnString (#11801)
This commit is contained in:
@ -273,6 +273,7 @@ public class AggregationNode extends PlanNode {
|
||||
msg.agg_node.setAggSortInfos(aggSortInfos);
|
||||
msg.agg_node.setUseStreamingPreaggregation(useStreamingPreagg);
|
||||
msg.agg_node.setIsFirstPhase(aggInfo.isFirstPhase());
|
||||
msg.agg_node.setUseFixedLengthSerializationOpt(true);
|
||||
List<Expr> groupingExprs = aggInfo.getGroupingExprs();
|
||||
if (groupingExprs != null) {
|
||||
msg.agg_node.setGroupingExprs(Expr.treesToThrift(groupingExprs));
|
||||
|
||||
Reference in New Issue
Block a user