timgrein commented on code in PR #3858:
URL: https://github.com/apache/calcite/pull/3858#discussion_r1680552976
##########
arrow/src/main/java/org/apache/calcite/adapter/arrow/ArrowTranslator.java:
##########
@@ -127,6 +127,8 @@ private String translateMatch2(RexNode node) {
return translateBinary("greater_than", "<", (RexCall) node);
case GREATER_THAN_OR_EQUAL:
return translateBinary("greater_than_or_equal_to", "<=", (RexCall) node);
+ case IS_NULL:
+ return translateUnary("isnull", (RexCall) node);
default:
throw new UnsupportedOperationException("Unsupported binary operator " +
node);
Review Comment:
Good catch, adjusted with [Adjust UnsupportedOperationException
message](https://github.com/apache/calcite/pull/3858/commits/96ddd0ce69fe9f70f96862d4bdc77a304b02aab5)
(saw your old comment first :) )
--
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]