Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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") {
Expand Down