bobhan1 commented on code in PR #47406: URL: https://github.com/apache/doris/pull/47406#discussion_r1929509529
########## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/DeleteFromCommand.java: ########## @@ -475,7 +475,8 @@ public LogicalPlan completeQueryPlan(ConnectContext ctx, LogicalPlan logicalQuer expr = new UnboundAlias(new TinyIntLiteral(((byte) 1)), Column.DELETE_SIGN); } else if (column.getName().equalsIgnoreCase(Column.SEQUENCE_COL) Review Comment: is it better to change like this? ```java } else if (column.getName().equalsIgnoreCase(Column.SEQUENCE_COL) { selectLists.add(new UnboundSlot(tableName, Column.SEQUENCE_COL)); } ``` -- 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