Skip to content

Commit

Permalink
EXPB-2253 CALCITE-6401 JDBC adapter cannot push down joins with compl…
Browse files Browse the repository at this point in the history
…ex JOIN condition
  • Loading branch information
kramerul committed May 8, 2024
1 parent ae5672e commit 6e5c7cc
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,7 @@ private static boolean canJoinOnCondition(RexNode node) {
case GREATER_THAN_OR_EQUAL:
case LESS_THAN:
case LESS_THAN_OR_EQUAL:
case SEARCH:
operands = ((RexCall) node).getOperands();
for (RexNode operand : operands) {
if (!canJoinOnCondition(operand)) {
Expand Down

0 comments on commit 6e5c7cc

Please sign in to comment.