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

zhaoc 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 764fa70  Fix is not null bug #2278 (#2279)
764fa70 is described below

commit 764fa70aa35f25a0f2582b507884a1de3cfe2b44
Author: kangpinghuang <[email protected]>
AuthorDate: Sat Nov 23 00:29:38 2019 +0800

    Fix is not null bug #2278 (#2279)
---
 be/src/olap/null_predicate.cpp | 2 --
 1 file changed, 2 deletions(-)

diff --git a/be/src/olap/null_predicate.cpp b/be/src/olap/null_predicate.cpp
index 826b0d3..441baeb 100644
--- a/be/src/olap/null_predicate.cpp
+++ b/be/src/olap/null_predicate.cpp
@@ -41,8 +41,6 @@ void NullPredicate::evaluate(VectorizedRowBatch* batch) const 
{
     }
 
     if (batch->column(_column_id)->no_nulls() && !_is_null) {
-        batch->set_size(n);
-        batch->set_selected_in_use(false);
         return;
     }
 


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

Reply via email to