JingDas commented on code in PR #24990: URL: https://github.com/apache/doris/pull/24990#discussion_r1349535059
########## fe/fe-core/src/main/java/org/apache/doris/analysis/SelectListItem.java: ########## @@ -132,6 +134,22 @@ public String toColumnLabel() { return expr.toColumnLabel(); } + /** + * Return a column label for the select list item. Support to generate + * column label automatically when can not get the column label exactly. + * Need the position of selectListItem to generate column label + */ + public String toColumnLabel(int position) { + Preconditions.checkState(!isStar()); Review Comment: Have fixed. -- 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