morrySnow commented on code in PR #33685: URL: https://github.com/apache/doris/pull/33685#discussion_r1568787255
########## fe/fe-core/src/main/java/org/apache/doris/nereids/stats/StatsCalculator.java: ########## @@ -773,6 +777,10 @@ private Statistics computeCatalogRelation(CatalogRelation catalogRelation) { idxId = olapScan.getSelectedIndexId(); } } + if (deltaRowCount > 0) { + LOG.info(catalogRelation.getTable().getName() + + " is partially analyzed, clear min/max values in column stats"); Review Comment: ``` if (LOG.isDebugEnabled()) { LOG.debug("{} is partially analyzed, clear min/max values in column stats", catalogRelation.getTable().getName()); } ``` -- 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