Sergey Nuyanzin created FLINK-40205:
---------------------------------------
Summary: PTF are failing in case of usage multiple PARTITION/ORDER
BY
Key: FLINK-40205
URL: https://issues.apache.org/jira/browse/FLINK-40205
Project: Flink
Issue Type: Sub-task
Components: Table SQL / Planner
Reporter: Sergey Nuyanzin
Assignee: Sergey Nuyanzin
Especially with usage of views
example of query
{code:sql}
CREATE VIEW v AS
SELECT suite_name, test_name, COUNT(*) AS c
FROM SESSION(TABLE t PARTITION BY (suite_name, test_name), DESCRIPTOR(ts),
INTERVAL '0.002' SECOND)
GROUP BY suite_name, test_name, window_start, window_end
{code}
and then {{SELECT}} from this view will fail
the reason is
https://issues.apache.org/jira/browse/CALCITE-7660
--
This message was sent by Atlassian Jira
(v8.20.10#820010)