github-actions[bot] commented on code in PR #60887: URL: https://github.com/apache/doris/pull/60887#discussion_r3323925790
########## fe/fe-core/src/main/java/org/apache/doris/common/proc/TabletsProcDir.java: ########## @@ -17,6 +17,7 @@ package org.apache.doris.common.proc; +import org.apache.doris.catalog.DataSizeDisplayUtil; Review Comment: FE Checkstyle enforces alphabetic ordering within the same import group (`CustomImportOrder` with `sortImportsInGroupAlphabetically=true`). This new import is before `CloudTabletStatMgr`, so `mvn validate` / `run-fe-ut.sh` will fail. Please place `CloudTabletStatMgr` before `DataSizeDisplayUtil`. ########## fe/fe-core/src/main/java/org/apache/doris/tablefunction/MetadataGenerator.java: ########## @@ -45,7 +46,9 @@ import org.apache.doris.catalog.View; import org.apache.doris.common.AnalysisException; import org.apache.doris.common.ClientPool; Review Comment: This import is unused after the logic was moved into `DataSizeDisplayUtil`. FE Checkstyle has `UnusedImports` enabled, so this will fail validation; please remove `org.apache.doris.common.Config`. -- 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]
