This is an automated email from the ASF dual-hosted git repository.
rui pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git
The following commit(s) were added to refs/heads/main by this push:
new 3c817991fa [VL][TEST] Add test for aggregate with duplicate project
(#11440)
3c817991fa is described below
commit 3c817991fa562e32795fd47c08144ccc5841a819
Author: Mingliang Zhu <[email protected]>
AuthorDate: Sun Mar 1 21:30:26 2026 +0800
[VL][TEST] Add test for aggregate with duplicate project (#11440)
---
.../apache/gluten/execution/VeloxAggregateFunctionsSuite.scala | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git
a/backends-velox/src/test/scala/org/apache/gluten/execution/VeloxAggregateFunctionsSuite.scala
b/backends-velox/src/test/scala/org/apache/gluten/execution/VeloxAggregateFunctionsSuite.scala
index ca259e0fae..e1c89f9869 100644
---
a/backends-velox/src/test/scala/org/apache/gluten/execution/VeloxAggregateFunctionsSuite.scala
+++
b/backends-velox/src/test/scala/org/apache/gluten/execution/VeloxAggregateFunctionsSuite.scala
@@ -176,6 +176,15 @@ abstract class VeloxAggregateFunctionsSuite extends
VeloxWholeStageTransformerSu
}) == 4)
}
}
+
+ // Test duplicate field project.
+ runQueryAndCompare("""
+ |select l_orderkey, sum(l_partkey), sum(l_partkey1)
from
+ | (select l_orderkey, l_partkey, l_partkey as
l_partkey1 from lineitem)
+ | group by l_orderkey
+ |""".stripMargin) {
+ checkGlutenPlan[HashAggregateExecTransformer]
+ }
}
test("min and max") {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]