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

yangzhg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 577b62b  [Internal][bug][doris-1091] Fix bug that compaction failed 
after deletion (#5413)
577b62b is described below

commit 577b62b3f94b16fe356eadb2a72b6fd479d41dc7
Author: Zhengguo Yang <[email protected]>
AuthorDate: Wed Feb 24 13:22:55 2021 +0800

    [Internal][bug][doris-1091] Fix bug that compaction failed after deletion 
(#5413)
---
 be/src/olap/reader.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/src/olap/reader.h b/be/src/olap/reader.h
index 785a53a..788e48c 100644
--- a/be/src/olap/reader.h
+++ b/be/src/olap/reader.h
@@ -101,7 +101,7 @@ public:
     uint64_t merged_rows() const { return _merged_rows; }
 
     uint64_t filtered_rows() const {
-        return _stats.rows_del_filtered + _stats.rows_conditions_filtered;
+        return _stats.rows_del_filtered + _stats.rows_conditions_filtered + 
_stats.rows_vec_del_cond_filtered;
     }
 
     const OlapReaderStatistics& stats() const { return _stats; }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to