From 19951a9c2b8fb1e0676f88a0c6697ff5151c3678 Mon Sep 17 00:00:00 2001 From: Holden Karau Date: Mon, 4 Dec 2023 16:46:18 -0800 Subject: [PATCH] More fix for the rebase --- .../glutenproject/execution/HashAggregateExecTransformer.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backends-velox/src/main/scala/io/glutenproject/execution/HashAggregateExecTransformer.scala b/backends-velox/src/main/scala/io/glutenproject/execution/HashAggregateExecTransformer.scala index d06bf241c69e..3243c2c80be1 100644 --- a/backends-velox/src/main/scala/io/glutenproject/execution/HashAggregateExecTransformer.scala +++ b/backends-velox/src/main/scala/io/glutenproject/execution/HashAggregateExecTransformer.scala @@ -400,7 +400,8 @@ case class HashAggregateExecTransformer( } childNodes.add(expressionNode) } - exprNodes.add(getRowConstructNode(args, childNodes, newInputAttributes, aggFunc)) + exprNodes.add( + getRowConstructNode(args, childNodes, newInputAttributes.toSeq, aggFunc)) case other => throw new UnsupportedOperationException(s"$other is not supported.") }