This is an automated email from the ASF dual-hosted git repository.
panxiaolei 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 b1cd542f9f7 [Chore](debug) fix RuntimeFilterMgr::debug_string format
(#56563)
b1cd542f9f7 is described below
commit b1cd542f9f732fa1e1453e3f2f434549c4f034fc
Author: Pxl <[email protected]>
AuthorDate: Sun Sep 28 20:34:10 2025 +0800
[Chore](debug) fix RuntimeFilterMgr::debug_string format (#56563)
fix RuntimeFilterMgr::debug_string format
---
be/src/runtime_filter/runtime_filter_mgr.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/be/src/runtime_filter/runtime_filter_mgr.cpp
b/be/src/runtime_filter/runtime_filter_mgr.cpp
index 96c99ad3674..25f017dae57 100644
--- a/be/src/runtime_filter/runtime_filter_mgr.cpp
+++ b/be/src/runtime_filter/runtime_filter_mgr.cpp
@@ -287,7 +287,7 @@ std::string RuntimeFilterMgr::debug_string() {
std::string result = "Merger Info:\n";
std::lock_guard l(_lock);
for (const auto& [filter_id, merger] : _local_merge_map) {
- result += fmt::format("merger: {}\n", filter_id,
merger.merger->debug_string());
+ result += fmt::format("{}\n", merger.merger->debug_string());
}
return result;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]