This is an automated email from the ASF dual-hosted git repository.

panxiaolei pushed a commit to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-4.0 by this push:
     new 4ef31f7e9de branch-4.0: [Chore](debug) fix 
RuntimeFilterMgr::debug_string format #56563 (#56582)
4ef31f7e9de is described below

commit 4ef31f7e9de2a149c72491c656ae8b0f218c239b
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sun Sep 28 20:38:01 2025 +0800

    branch-4.0: [Chore](debug) fix RuntimeFilterMgr::debug_string format #56563 
(#56582)
    
    Cherry-picked from #56563
    
    Co-authored-by: Pxl <[email protected]>
---
 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]

Reply via email to