Kikyou1997 commented on code in PR #24769:
URL: https://github.com/apache/doris/pull/24769#discussion_r1334291788


##########
fe/fe-core/src/main/java/org/apache/doris/statistics/AnalysisManager.java:
##########
@@ -1069,10 +1076,18 @@ protected SimpleQueue<AnalysisInfo> 
createSimpleQueue(Collection<AnalysisInfo> c
     // Remove col stats status from TableStats if failed load some col stats 
after analyze corresponding column so that
     // we could make sure it would be analyzed again soon if user or system 
submit job for that column again.
     public void removeColStatsStatus(long tblId, String colName) {
-        TableStats tableStats = findTableStatsStatus(tblId);
+        TableStatsMeta tableStats = findTableStatsStatus(tblId);
         if (tableStats != null) {
             tableStats.removeColumn(colName);
         }
     }
 
+    public ColStatsMeta findColStatsMeta(long tblId, String colName) {

Review Comment:
   Need by column stats display  



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

Reply via email to