zenoyang commented on a change in pull request #8627: URL: https://github.com/apache/incubator-doris/pull/8627#discussion_r836261018
########## File path: be/src/olap/column_predicate.h ########## @@ -33,13 +33,30 @@ class VectorizedRowBatch; class Schema; class RowBlockV2; +enum class PredicateType { + Unknown = 0, + EQ = 1, + NE = 2, + LT = 3, + LE = 4, + GT = 5, + GE = 6, + InList = 7, Review comment: done ########## File path: be/src/olap/null_predicate.cpp ########## @@ -29,6 +29,13 @@ namespace doris { NullPredicate::NullPredicate(uint32_t column_id, bool is_null, bool opposite) : ColumnPredicate(column_id), _is_null(opposite != is_null) {} +PredicateType NullPredicate::type() const { + if (_is_null) Review comment: done -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org