SaintBacchus commented on code in PR #11338: URL: https://github.com/apache/doris/pull/11338#discussion_r933104103
########## fe/fe-core/src/main/java/org/apache/doris/analysis/UseStmt.java: ########## @@ -35,19 +35,35 @@ */ public class UseStmt extends StatementBase { private static final Logger LOG = LogManager.getLogger(UseStmt.class); + private String catalogName; private String database; public UseStmt(String db) { database = db; } + public UseStmt(String catalogName, String db) { Review Comment: Still in working -- 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