Hisoka-X commented on code in PR #6123:
URL: https://github.com/apache/seatunnel/pull/6123#discussion_r1451157702
##########
seatunnel-transforms-v2/src/main/java/org/apache/seatunnel/transform/sql/zeta/ZetaSQLFunction.java:
##########
@@ -221,6 +227,15 @@ public Object computeForValue(Expression expression,
Object[] inputFields) {
Parenthesis parenthesis = (Parenthesis) expression;
return computeForValue(parenthesis.getExpression(), inputFields);
}
+ if (zetaSQLFilter.isConditionExpr(expression)) {
+ return zetaSQLFilter.executeFilter(expression, inputFields);
+ }
Review Comment:
Why add this? Is we missed something?
--
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]