soumyakanti3578 commented on code in PR #4567:
URL: https://github.com/apache/calcite/pull/4567#discussion_r2395954901
##########
core/src/main/java/org/apache/calcite/rex/RexSimplify.java:
##########
@@ -2331,7 +2331,7 @@ private void verify(RexNode before, RexNode simplified,
RexUnknownAs unknownAs)
private RexNode simplifySearch(RexCall call, RexUnknownAs unknownAs) {
assert call.getKind() == SqlKind.SEARCH;
- final RexNode a = call.getOperands().get(0);
+ final RexNode a = simplify(call.getOperands().get(0), unknownAs);
Review Comment:
Updated with `simplify` on a separate line.
--
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]