This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/incubator-doris.git
commit 82775fdb143835addf1708713449f37caf952f87 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 4114ca6..330b816 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]
