libenchao opened a new pull request #2756:
URL: https://github.com/apache/calcite/pull/2756


   Fix the bug for `RelOptUtil#splitJoinCondition`:
   ```Java
     public static RexNode splitJoinCondition(
         List<RelDataTypeField> sysFieldList,
         List<RelNode> inputs,
         RexNode condition,
         List<List<RexNode>> joinKeys,
         @Nullable List<Integer> filterNulls,
         @Nullable List<SqlOperator> rangeOp) {
   ```
    for following case:
   ```SQL
   select
    *
   from emp left join dept
   on emp.empno > 0
   ```
   The expected result is to make `(empno > 0) = true` as the equal join key.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to