apache / ignite

Apache Ignite

Home Page:https://ignite.apache.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is there any plan to support window aggregation in Calcite Query Engine

asdfgh19 opened this issue · comments

select  "deptno",
 rank() over (order by "deptno") as r
from "hr"."emps"

Calcite supports the above Sql, but Ignite's Calcite Query Engine does not support window aggregation syntax. Is there any plan to implement window aggregation in Calcite Query Engine.