[exec](runtimefilter) support null aware in runtime filter (#32152)

null aware in runtime filter
This commit is contained in:
HappenLee
2024-03-14 17:59:15 +08:00
committed by yiguolei
parent aca7328109
commit c8f3643890
10 changed files with 81 additions and 41 deletions

View File

@ -864,7 +864,7 @@ Status VScanNode::_normalize_not_in_and_not_eq_predicate(VExpr* expr, VExprConte
HybridSetBase::IteratorBase* iter = state->hybrid_set->begin();
auto fn_name = std::string("");
if (!is_fixed_range && state->null_in_set) {
if (!is_fixed_range && state->hybrid_set->contain_null()) {
_eos = true;
}
while (iter->has_next()) {