Jibing-Li commented on code in PR #40680:
URL: https://github.com/apache/doris/pull/40680#discussion_r1949131141


##########
fe/fe-core/src/main/java/org/apache/doris/statistics/AnalysisManager.java:
##########
@@ -304,11 +308,23 @@ private void sendJobId(List<AnalysisInfo> analysisInfos, 
boolean proxy) {
             row.add(databaseIf.isPresent() ? databaseIf.get().getFullName() : 
"DB may get deleted");
             if (databaseIf.isPresent()) {
                 Optional<? extends TableIf> table = 
databaseIf.get().getTable(analysisInfo.tblId);
-                row.add(table.isPresent() ? table.get().getName() : "Table may 
get deleted");
+                row.add(table.isPresent() ? 
Util.getTempTableDisplayName(table.get().getName())

Review Comment:
   Why do we need to do this and the following about newColNames if we skip 
analyzing temp table?



-- 
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

Reply via email to