ignite
ignite copied to clipboard
Is there any plan to support window aggregation in Calcite Query Engine
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.