starocean999 commented on code in PR #50671:
URL: https://github.com/apache/doris/pull/50671#discussion_r2113335891
##########
fe/fe-core/src/main/java/org/apache/doris/nereids/parser/LogicalPlanBuilder.java:
##########
@@ -7753,6 +7754,15 @@ public LogicalPlan
visitRefreshDictionary(RefreshDictionaryContext ctx) {
return new RefreshDictionaryCommand(dbName, dictName);
}
+ @Override
+ public LogicalPlan
visitCancelDecommisionBackend(DorisParser.CancelDecommisionBackendContext ctx) {
+ List<String> parts = new ArrayList<>();
+ for (TerminalNode terminalNode : ctx.STRING_LITERAL()) {
Review Comment:
```
List<String> hostPorts = ctx.hostPorts.stream()
.map(e -> stripQuotes(e.getText()))
.collect(Collectors.toList());
```
--
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]