Skip to content

Commit

Permalink
[fix] Fix Check_time return wrong value when exec show table status (a…
Browse files Browse the repository at this point in the history
  • Loading branch information
liutang123 authored Mar 23, 2022
1 parent 92feb9c commit 72dfdb9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ private void handleShowTableStatus() throws AnalysisException {
}
// Check_time
if (table.getLastCheckTime() > 0) {
row.add(TimeUtils.longToTimeString(table.getLastCheckTime() * 1000));
row.add(TimeUtils.longToTimeString(table.getLastCheckTime()));
} else {
row.add(null);
}
Expand Down

0 comments on commit 72dfdb9

Please sign in to comment.