Yulei-Yang commented on code in PR #40680:
URL: https://github.com/apache/doris/pull/40680#discussion_r1978835045


##########
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:
   done. now temp table will be analyzed as well



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