Timo Walther created FLINK-23320:
------------------------------------
Summary: Support semi/anti temporal joins
Key: FLINK-23320
URL: https://issues.apache.org/jira/browse/FLINK-23320
Project: Flink
Issue Type: New Feature
Components: Table SQL / Planner
Reporter: Timo Walther
Similar to FLINK-23305, we should also allow semi/anti joins for temporal joins
such as:
{code}
SELECT T.*
FROM MyTable AS T
WHERE EXISTS (
SELECT * FROM VersionedTable FOR SYSTEM_TIME AS OF T.rowtime AS D
WHERE T.a = D.id)
{code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)