This is an automated email from the ASF dual-hosted git repository.
zhangstar333 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 9f67bcf3802 [chore](format) fix tablet_meta.cpp (#25410)
9f67bcf3802 is described below
commit 9f67bcf3802e6e840d9bba8ceaf9613c273d3d12
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 c118737210d..8e77f26c5ac 100644
--- a/be/src/olap/tablet_meta.cpp
+++ b/be/src/olap/tablet_meta.cpp
@@ -448,7 +448,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]