Jaehwa Jung created TAJO-625:
--------------------------------
Summary: HiveQLAnalyzer can't support complex join conditions.
Key: TAJO-625
URL: https://issues.apache.org/jira/browse/TAJO-625
Project: Tajo
Issue Type: Bug
Components: parser
Reporter: Jaehwa Jung
Assignee: Jaehwa Jung
Current HiveQLAnalyzer can't pass one of join unit cases. The test query is as
follows:
{code:xml}
select s_acctbal, s_name, n_name, p_partkey, p_mfgr, s_address, s_phone,
s_comment, ps_supplycost
from region join nation on n_regionkey = r_regionkey and r_name = 'EUROPE'
join supplier on s_nationekey = n_nationkey
join partsupp on s_suppkey = ps_ps_suppkey
join part on p_partkey = ps_partkey and p_type like '%BRASS' and p_size = 15
{code}
--
This message was sent by Atlassian JIRA
(v6.1.5#6160)