This is an automated email from the ASF dual-hosted git repository.
morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git
The following commit(s) were added to refs/heads/master by this push:
new 72dfdb9 [fix] Fix Check_time return wrong value when exec show table
status (#8578)
72dfdb9 is described below
commit 72dfdb9a6c7bef592d8dd398ad6e76a00456868a
Author: Lijia Liu <[email protected]>
AuthorDate: Wed Mar 23 10:34:23 2022 +0800
[fix] Fix Check_time return wrong value when exec show table status (#8578)
---
fe/fe-core/src/main/java/org/apache/doris/qe/ShowExecutor.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/ShowExecutor.java
b/fe/fe-core/src/main/java/org/apache/doris/qe/ShowExecutor.java
index 6f48ffe..f92d6b7 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/qe/ShowExecutor.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/qe/ShowExecutor.java
@@ -739,7 +739,7 @@ public class ShowExecutor {
}
// Check_time
if (table.getLastCheckTime() > 0) {
-
row.add(TimeUtils.longToTimeString(table.getLastCheckTime() * 1000));
+
row.add(TimeUtils.longToTimeString(table.getLastCheckTime()));
} else {
row.add(null);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]