FlyingZC commented on code in PR #35920:
URL: https://github.com/apache/shardingsphere/pull/35920#discussion_r2191924301
##########
parser/sql/dialect/sqlserver/src/main/java/org/apache/shardingsphere/sql/parser/sqlserver/visitor/statement/SQLServerStatementVisitor.java:
##########
@@ -711,9 +711,17 @@ public final ASTNode visitSpecialFunction(final
SpecialFunctionContext ctx) {
if (null != ctx.trimFunction()) {
return visit(ctx.trimFunction());
}
+ if (null != ctx.changeTableFunction()) {
+ return visit(ctx.changeTableFunction());
+ }
return new FunctionSegment(ctx.getStart().getStartIndex(),
ctx.getStop().getStopIndex(), ctx.getChild(0).getChild(0).getText(),
getOriginalText(ctx));
}
+ @Override
+ public ASTNode visitChangeTableFunction(final
SQLServerStatementParser.ChangeTableFunctionContext ctx) {
Review Comment:
Use import keyword.
--
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]