From aa4c45c84dcd14c9bf0d01bf8464a04988485564 Mon Sep 17 00:00:00 2001 From: Hao Chen Date: Sat, 7 Aug 2021 00:10:36 +0800 Subject: [PATCH] [typo] microseconds --> milliseconds if use "ms" in the output, it should use millisecond for timing (not microsecond) --- storage/innobase/trx/trx0sys.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/innobase/trx/trx0sys.cc b/storage/innobase/trx/trx0sys.cc index 40f00fb960b9..9c1da5768ffd 100644 --- a/storage/innobase/trx/trx0sys.cc +++ b/storage/innobase/trx/trx0sys.cc @@ -465,7 +465,7 @@ purge_pq_t *trx_sys_init_at_db_start(void) { } Clock_point end = Clock::now(); const auto time_diff = - std::chrono::duration_cast(end - start) + std::chrono::duration_cast(end - start) .count(); ib::info() << "Time taken to initialize rseg using " << srv_rseg_init_threads << " thread: " << time_diff << " ms.";