strongduanmu commented on code in PR #25424:
URL: https://github.com/apache/shardingsphere/pull/25424#discussion_r1183146163
##########
sql-parser/dialect/mysql/src/main/java/org/apache/shardingsphere/sql/parser/mysql/visitor/statement/MySQLStatementVisitor.java:
##########
@@ -474,12 +481,17 @@ private ASTNode createAssignmentSegment(final
BooleanPrimaryContext ctx) {
private ASTNode createCompareSegment(final BooleanPrimaryContext ctx) {
ExpressionSegment left = (ExpressionSegment)
visit(ctx.booleanPrimary());
ExpressionSegment right;
+ String operator;
+ if (null != ctx.ALL()) {
Review Comment:
Hi @kanha-gupta, I test your pr, you can try add
`SUPPORTED_COMPARE_OPERATOR.add("IS NULL");
SUPPORTED_COMPARE_OPERATOR.add("IS NOT NULL");` to
EncryptConditionEngine, this exception can be solved.
--
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]