This is an automated email from the ASF dual-hosted git repository. kxiao pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 01bca9d95b7daefc2815755d0b10272152b1d44f Author: Dongyang Li <[email protected]> AuthorDate: Fri Oct 13 17:58:54 2023 +0800 [chore](format) fix tablet_meta.cpp (#25410) fix format error introduced by #25124 The clang format check had a bug before, so PR 25124 can pass the check at that time. --- be/src/olap/tablet_meta.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/olap/tablet_meta.cpp b/be/src/olap/tablet_meta.cpp index e1637d3d945..58e2876d81a 100644 --- a/be/src/olap/tablet_meta.cpp +++ b/be/src/olap/tablet_meta.cpp @@ -453,7 +453,7 @@ Status TabletMeta::_save_meta(DataDir* data_dir) { << ", schema_hash=" << schema_hash(); } auto t3 = MonotonicMicros(); - auto cost = t3 - t1; + auto cost = t3 - t1; if (cost > 1 * 1000 * 1000) { LOG(INFO) << "save tablet(" << full_name() << ") meta too slow. serialize cost " << t2 - t1 << "(us), serialized binary size: " << meta_binary.length() --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
