morrySnow commented on code in PR #37537:
URL: https://github.com/apache/doris/pull/37537#discussion_r1669974648


##########
fe/fe-core/src/main/cup/sql_parser.cup:
##########
@@ -1419,6 +1419,10 @@ alter_stmt ::=
     {:
         RESULT = new AlterResourceStmt(resourceName, properties);
     :}
+    | KW_ALTER KW_STORAGE KW_VAULT ident_or_text:vaultName 
opt_properties:properties
+    {:
+        RESULT = new AlterStorageVaultStmt(vaultName, properties);
+    :}

Review Comment:
   since we will remove legacy planner soon, please impl it in nereids 
directly, and do not create a new class in doris/analysis



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to