ihuzenko commented on a change in pull request #1488: DRILL-786: Allow CROSS 
JOIN syntax
URL: https://github.com/apache/drill/pull/1488#discussion_r222932584
 
 

 ##########
 File path: 
exec/java-exec/src/main/java/org/apache/drill/exec/planner/sql/parser/UnsupportedOperatorsVisitor.java
 ##########
 @@ -256,14 +255,6 @@ public SqlNode visit(SqlCall sqlCall) {
             "See Apache Drill JIRA: DRILL-1986");
         throw new UnsupportedOperationException();
       }
-
-      // Block Cross Join
-      if(join.getJoinType() == JoinType.CROSS) {
 
 Review comment:
   Yes, at this moment we can detect that it's explicit cross join because here 
inspected object is SqlNode, but later after conversion to RelNode this 
`JoinType.CROSS` will be converted to another enum `JoinRelType.INNER` value. 
Please see more details in comments under 
[DRILL-786](https://issues.apache.org/jira/browse/DRILL-786).

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to