This is an automated email from the ASF dual-hosted git repository. panxiaolei pushed a commit to branch test_0114 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 6beaeb9a105a1be745abbe45941b58140ea1dbfc Author: BiteTheDDDDt <pxl...@qq.com> AuthorDate: Tue Jan 14 00:12:36 2025 +0800 do not ignore filter when runtime filter merging --- be/src/exprs/runtime_filter.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/be/src/exprs/runtime_filter.cpp b/be/src/exprs/runtime_filter.cpp index 80d9494ac9e..914b18dc2ba 100644 --- a/be/src/exprs/runtime_filter.cpp +++ b/be/src/exprs/runtime_filter.cpp @@ -495,16 +495,7 @@ public: switch (_filter_type) { case RuntimeFilterType::IN_FILTER: { - if (!_context->hybrid_set) { - _context->ignored = true; - return Status::OK(); - } _context->hybrid_set->insert(wrapper->_context->hybrid_set.get()); - if (_max_in_num >= 0 && _context->hybrid_set->size() >= _max_in_num) { - _context->ignored = true; - // release in filter - _context->hybrid_set.reset(); - } break; } case RuntimeFilterType::MIN_FILTER: --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org