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