iwanttobepowerful commented on code in PR #5040:
URL: https://github.com/apache/calcite/pull/5040#discussion_r3457452061
##########
core/src/test/resources/sql/winagg.iq:
##########
Review Comment:
another case
```sql
select ename, job, hiredate,
avg(sal) over (order by hiredate rows 3 preceding) as avg_sal,
avg(sal) filter (where job = 'MANAGER') over (order by hiredate rows 3
preceding)
as avg_mgr_sal
from emp
order by hiredate;
```
--
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]