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

yiguolei 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 eb8365b036b [bug](not in) if not in (null) could eos early (#34411)
eb8365b036b is described below

commit eb8365b036b8ced4f0ef1f7dbf9ac06ec8ea081c
Author: zhangstar333 <87313068+zhangstar...@users.noreply.github.com>
AuthorDate: Tue May 7 13:54:51 2024 +0800

    [bug](not in) if not in (null) could eos early (#34411)
---
 be/src/pipeline/exec/scan_operator.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/src/pipeline/exec/scan_operator.cpp 
b/be/src/pipeline/exec/scan_operator.cpp
index 37da4d97288..e5ba6dbf06d 100644
--- a/be/src/pipeline/exec/scan_operator.cpp
+++ b/be/src/pipeline/exec/scan_operator.cpp
@@ -770,7 +770,7 @@ Status 
ScanLocalState<Derived>::_normalize_not_in_and_not_eq_predicate(
 
         HybridSetBase::IteratorBase* iter = state->hybrid_set->begin();
         auto fn_name = std::string("");
-        if (!is_fixed_range && state->hybrid_set->contain_null()) {
+        if (state->hybrid_set->contain_null()) {
             _eos = true;
             _scan_dependency->set_ready();
         }


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

Reply via email to