[fix] Fix Check_time return wrong value when exec show table status (#8578)

This commit is contained in:
Lijia Liu
2022-03-23 10:34:23 +08:00
committed by GitHub
parent 92feb9c6c8
commit 72dfdb9a6c

View File

@ -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);
}