starocean999 commented on code in PR #48428:
URL: https://github.com/apache/doris/pull/48428#discussion_r2046786828


##########
fe/fe-core/src/main/java/org/apache/doris/nereids/parser/LogicalPlanBuilder.java:
##########
@@ -6384,6 +6386,16 @@ public LogicalPlan 
visitDescribeTableValuedFunction(DorisParser.DescribeTableVal
         return new DescribeCommand(tableValuedFunctionRef);
     }
 
+    @Override
+    public LogicalPlan visitAlterUser(DorisParser.AlterUserContext ctx) {
+        boolean ifExist = ctx.EXISTS() != null;
+        UserDesc userDesc = visitGrantUserIdentify(ctx.grantUserIdentify());
+        PasswordOptions passwordOptions = 
visitPasswordOption(ctx.passwordOption());
+        String comment = ctx.STRING_LITERAL() != null ? 
ctx.STRING_LITERAL().getText() : null;

Review Comment:
   ```suggestion
           String comment = ctx.STRING_LITERAL() != null ? 
stripQuotes(ctx.STRING_LITERAL().getText()) : null;
   ```



-- 
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...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to