luchunliang commented on code in PR #10871: URL: https://github.com/apache/inlong/pull/10871#discussion_r1730752309
########## inlong-sdk/transform-sdk/src/main/java/org/apache/inlong/sdk/transform/process/operator/OperatorTools.java: ########## @@ -165,6 +166,8 @@ public static ExpressionOperator buildOperator(Expression expr) { return new MinorThanOperator((MinorThan) expr); } else if (expr instanceof MinorThanEquals) { return new MinorThanEqualsOperator((MinorThanEquals) expr); + } else if (expr instanceof Between) { + return new BetweenOperator((Between) expr); Review Comment: Miss unit case. -- 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: commits-unsubscr...@inlong.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org