ptupitsyn commented on code in PR #1364:
URL: https://github.com/apache/ignite-3/pull/1364#discussion_r1029229725
##########
modules/runner/src/integrationTest/java/org/apache/ignite/internal/sql/engine/ItAggregatesTest.java:
##########
@@ -64,6 +64,18 @@ public void countOfNonNumericField() {
.returns(15d, 1L)
.check();
+ // same query, but grouping by alias
+ assertQuery("select salary as sal, count(name) from person group by
sal order by salary")
Review Comment:
Can we also add a test for computed column grouping?
```sql
select (salary / 4 + 10) as sal, count(*) from person group by sal order by
sal
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]