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


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new c31b543f2ab [fix](profile) fix profile 
_inverted_index_searcher_cache_miss_counter (#36700)
c31b543f2ab is described below

commit c31b543f2ab909d47edec23e305e8ecf79a65f16
Author: Kang <kxiao.ti...@gmail.com>
AuthorDate: Sun Jun 23 10:02:12 2024 +0800

    [fix](profile) fix profile _inverted_index_searcher_cache_miss_counter 
(#36700)
    
    fix mistake _inverted_index_query_cache_miss_counter ->
    _inverted_index_searcher_cache_miss_counter
---
 be/src/vec/exec/scan/new_olap_scanner.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/src/vec/exec/scan/new_olap_scanner.cpp 
b/be/src/vec/exec/scan/new_olap_scanner.cpp
index 801fe09b598..f80802cc2f7 100644
--- a/be/src/vec/exec/scan/new_olap_scanner.cpp
+++ b/be/src/vec/exec/scan/new_olap_scanner.cpp
@@ -601,7 +601,7 @@ void NewOlapScanner::_update_counters_before_close() {
                    stats.inverted_index_searcher_search_timer);
     COUNTER_UPDATE(olap_parent->_inverted_index_searcher_cache_hit_counter,
                    stats.inverted_index_searcher_cache_hit);
-    COUNTER_UPDATE(olap_parent->_inverted_index_query_cache_miss_counter,
+    COUNTER_UPDATE(olap_parent->_inverted_index_searcher_cache_miss_counter,
                    stats.inverted_index_searcher_cache_miss);
 
     if (config::enable_file_cache) {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to