HappenLee commented on code in PR #46789: URL: https://github.com/apache/doris/pull/46789#discussion_r1914927864
########## be/src/exprs/runtime_filter.cpp: ########## @@ -503,15 +503,9 @@ class RuntimePredicateWrapper { switch (_filter_type) { case RuntimeFilterType::IN_FILTER: { - if (!_context->hybrid_set) { - set_ignored(); - return Status::OK(); - } _context->hybrid_set->insert(wrapper->_context->hybrid_set.get()); if (_max_in_num >= 0 && _context->hybrid_set->size() >= _max_in_num) { - set_ignored(); - // release in filter - _context->hybrid_set.reset(); + set_disabled(); Review Comment: should release the memory -- 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