This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.0 by this push:
new c7de711ec03 branch-4.0: [fix](profile) Fix get meta version time unit
#60422 (#60464)
c7de711ec03 is described below
commit c7de711ec036061f3179f5e40ab9fcec33c0b7af
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Feb 4 10:05:14 2026 +0800
branch-4.0: [fix](profile) Fix get meta version time unit #60422 (#60464)
Cherry-picked from #60422
Co-authored-by: Siyang Tang <[email protected]>
---
.../src/main/java/org/apache/doris/common/profile/SummaryProfile.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/common/profile/SummaryProfile.java
b/fe/fe-core/src/main/java/org/apache/doris/common/profile/SummaryProfile.java
index 86a4e63c801..ea48aff41fb 100644
---
a/fe/fe-core/src/main/java/org/apache/doris/common/profile/SummaryProfile.java
+++
b/fe/fe-core/src/main/java/org/apache/doris/common/profile/SummaryProfile.java
@@ -969,7 +969,7 @@ public class SummaryProfile {
private String getPrettyGetMetaVersionTime() {
long getMetaVersionTime = getPartitionVersionTime +
getTableVersionTime;
- return getPrettyTime(getMetaVersionTime, 0, TUnit.TIME_MS);
+ return RuntimeProfile.printCounter(getMetaVersionTime, TUnit.TIME_NS);
}
private String getPrettyGetPartitionVersionTime() {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]