HappenLee commented on code in PR #22114: URL: https://github.com/apache/doris/pull/22114#discussion_r1271368782
########## be/src/exprs/runtime_filter.cpp: ########## @@ -1152,10 +1152,13 @@ Status IRuntimeFilter::publish() { } } -Status IRuntimeFilter::get_push_expr_ctxs(std::vector<vectorized::VExprSPtr>* push_exprs) { +Status IRuntimeFilter::get_push_expr_ctxs(std::vector<vectorized::VExprSPtr>* push_exprs, + bool is_late_arrival) { DCHECK(is_consumer()); if (!_is_ignored) { - _set_push_down(); + if (!is_late_arrival) { Review Comment: change the logic of line order the function -- 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