luoyuxia created FLINK-26505:
--------------------------------
Summary: Support non equality condition in Hive dialect
Key: FLINK-26505
URL: https://issues.apache.org/jira/browse/FLINK-26505
Project: Flink
Issue Type: Sub-task
Components: Connectors / Hive
Reporter: luoyuxia
Fix For: 1.15.0
It'll throw exception with the following sql which can be executed in hive:
{code:java}
select count(1)
from
(select key
from t1
where key = 0) t1
left semi join
(select key
from t2
where key = 0) t2
on 1 = 1;
{code}
--
This message was sent by Atlassian Jira
(v8.20.1#820001)