yiguolei commented on code in PR #46789: URL: https://github.com/apache/doris/pull/46789#discussion_r1911867896
########## be/src/pipeline/exec/scan_operator.cpp: ########## @@ -289,9 +289,12 @@ Status ScanLocalState<Derived>::_normalize_predicate( Status status = Status::OK(); std::visit( [&](auto& value_range) { + bool is_whole_range_before_push_down = + value_range.is_whole_value_range(); Defer mark_runtime_filter_flag {[&]() { value_range.mark_runtime_filter_predicate( - _is_runtime_filter_predicate); + is_whole_range_before_push_down && Review Comment: add comment here -- 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