You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "luoyuxia (Jira)" <ji...@apache.org> on 2022/03/07 03:50:00 UTC

[jira] [Created] (FLINK-26505) Support non equality condition in Hive dialect

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)