LiBinfeng-01 commented on code in PR #45108: URL: https://github.com/apache/doris/pull/45108#discussion_r1879437584
########## fe/fe-core/src/main/java/org/apache/doris/nereids/parser/LogicalPlanBuilder.java: ########## @@ -4714,6 +4717,26 @@ public LogicalPlan visitShowStorageEngines(ShowStorageEnginesContext ctx) { return new ShowStorageEnginesCommand(); } + @Override + public LogicalPlan visitAdminRebalanceDisk(AdminRebalanceDiskContext ctx) { + if (ctx.ON() != null) { + List<String> backendList = Lists.newArrayList(); + ctx.backends.forEach(backend -> backendList.add(stripQuotes(backend.getText()))); + return new AdminRebalanceDiskCommand(false, backendList); + } + return new AdminRebalanceDiskCommand(false); + } + + @Override + public LogicalPlan visitAdminCancelRebalanceDisk(AdminCancelRebalanceDiskContext ctx) { + if (ctx.ON() != null) { + List<String> backendList = Lists.newArrayList(); + ctx.backends.forEach(backend -> backendList.add(stripQuotes(backend.getText()))); + return new AdminRebalanceDiskCommand(true, backendList); Review Comment: pls use two commands but not one command to implement this feature. Planner also use two stmt to do so -- 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