Gabriel39 commented on code in PR #21310:
URL: https://github.com/apache/doris/pull/21310#discussion_r1257631043
##########
be/src/olap/in_list_predicate.h:
##########
@@ -381,6 +381,8 @@ class InListPredicateBase : public ColumnPredicate {
bool evaluate_and(const segment_v2::BloomFilter* bf) const override {
if constexpr (PT == PredicateType::IN_LIST) {
+ // IN predicate can not use ngram bf, just return true to accept
+ if (bf->is_ngram_bf()) return true;
Review Comment:
For delete condition, is this always true?
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]