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

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

commit 9cc94650d7b83ae0f082b15e9697057d9d847f18
Author: HappenLee <[email protected]>
AuthorDate: Wed Oct 27 09:54:25 2021 +0800

    [Bug] Fix treat tuple_is_null_predicate is const expr cause core problem 
(#6919)
    
    Fix treat tuple_is_null_predicate is const expr cause core problem
---
 be/src/exprs/tuple_is_null_predicate.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/be/src/exprs/tuple_is_null_predicate.h 
b/be/src/exprs/tuple_is_null_predicate.h
index 2125887..58069d5 100644
--- a/be/src/exprs/tuple_is_null_predicate.h
+++ b/be/src/exprs/tuple_is_null_predicate.h
@@ -31,6 +31,9 @@ public:
         return pool->add(new TupleIsNullPredicate(*this));
     }
 
+    bool is_constant() const override {
+        return false;
+    }
 protected:
     friend class Expr;
 

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

Reply via email to