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 c61059c521e [Bug](predicate) Fixed the problem that the number of rows 
in inlist predicate was cou… (#41824)
c61059c521e is described below

commit c61059c521eedbde27a9c96e07c2f06301e3d2ec
Author: Pxl <pxl...@qq.com>
AuthorDate: Tue Oct 15 11:22:30 2024 +0800

    [Bug](predicate) Fixed the problem that the number of rows in inlist 
predicate was cou… (#41824)
    
    …nted twice
    
    ## Proposed changes
    Fixed the problem that the number of rows in inlist predicate was
    counted twice
---
 be/src/olap/in_list_predicate.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/be/src/olap/in_list_predicate.h b/be/src/olap/in_list_predicate.h
index e79c2249c47..3929cd31ba4 100644
--- a/be/src/olap/in_list_predicate.h
+++ b/be/src/olap/in_list_predicate.h
@@ -373,8 +373,6 @@ private:
                 new_size = _base_evaluate<false, false>(&column, nullptr, sel, 
size);
             }
         }
-        _evaluated_rows += size;
-        _passed_rows += new_size;
         return new_size;
     }
 


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

Reply via email to