TherChenYang commented on code in PR #29721:
URL: https://github.com/apache/shardingsphere/pull/29721#discussion_r1451952385
##########
parser/sql/dialect/sqlserver/src/main/java/org/apache/shardingsphere/sql/parser/sqlserver/visitor/statement/SQLServerStatementVisitor.java:
##########
@@ -687,6 +695,15 @@ public final ASTNode visitCharFunction(final
CharFunctionContext ctx) {
return new FunctionSegment(ctx.getStart().getStartIndex(),
ctx.getStop().getStopIndex(), ctx.CHAR().getText(), getOriginalText(ctx));
}
+ @Override
+ public final ASTNode visitOpenJsonFunction(final OpenJsonFunctionContext
ctx) {
+ FunctionSegment result = new
FunctionSegment(ctx.getStart().getStartIndex(), ctx.getStop().getStopIndex(),
ctx.OPENJSON().getText(), getOriginalText(ctx));
+ for (ExprContext exprContext : ctx.expr()) {
Review Comment:
Already modified, thank you for the review.
--
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]