You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by "Sean Hsuan-Yi Chu (JIRA)" <ji...@apache.org> on 2015/01/25 20:55:34 UTC

[jira] [Created] (DRILL-2068) Disable Implicit Cross Join with Condition on the same table (e.g., select ... from a, b where a._1 = a._2)

Sean Hsuan-Yi Chu created DRILL-2068:
----------------------------------------

             Summary: Disable Implicit Cross Join with Condition on the same table (e.g., select ... from  a, b where a._1 = a._2) 
                 Key: DRILL-2068
                 URL: https://issues.apache.org/jira/browse/DRILL-2068
             Project: Apache Drill
          Issue Type: Bug
          Components: Query Planning & Optimization
            Reporter: Sean Hsuan-Yi Chu
            Assignee: Sean Hsuan-Yi Chu


Although explicit cross join is temporarily disabled, 
we can attain the identical purpose by 

select * 
from cp.`tpch/nation.parquet` a, 
cp.`tpch/region.parquet` b 
where a.... = a....; 

That is, join on 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)