snuyanzin commented on code in PR #27290:
URL: https://github.com/apache/flink/pull/27290#discussion_r2574361873
##########
flink-table/flink-table-planner/src/test/scala/org/apache/flink/table/planner/plan/utils/FlinkRexUtilTest.scala:
##########
@@ -353,8 +353,8 @@ class FlinkRexUtilTest {
rexBuilder.makeCall(GREATER_THAN, a, rexBuilder.makeLiteral("l"))),
rexBuilder.makeCall(
OR,
- rexBuilder.makeCall(EQUALS, a, b),
- rexBuilder.makeCall(LESS_THAN, c, d),
+ rexBuilder.makeCall(EQUALS, b, a),
+ rexBuilder.makeCall(GREATER_THAN, d, c),
Review Comment:
The only difference here is switch from `LESS_THAN` to `GREATER_THAN` and
reorder args
--
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]