Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
lgbo-ustc committed Nov 6, 2024
1 parent adb58e1 commit b521269
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,6 @@ case class CHHashAggregateExecTransformer(
"PartialMerge's child not being HashAggregateExecBaseTransformer" +
" is unsupported yet")
}
val hashAggregateChild = child.asInstanceOf[BaseAggregateExec]
val aggTypesExpr = ExpressionConverter
.replaceWithExpressionTransformer(
aggExpr.resultAttribute,
Expand Down
1 change: 1 addition & 0 deletions cpp-ch/local-engine/Parser/SerializedPlanParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ void adjustOutput(const DB::QueryPlanPtr & query_plan, const substrait::PlanRel
"Missmatch result columns size. plan column size {}, subtrait plan name size {}.",
cols.getNames().size(),
root_rel.root().names_size());
}
for (int i = 0; i < static_cast<int>(cols.getNames().size()); i++)
aliases.emplace_back(NameWithAlias(cols.getNames()[i], root_rel.root().names(i)));
actions_dag.project(aliases);
Expand Down

0 comments on commit b521269

Please sign in to comment.