yiguolei commented on code in PR #10103:
URL: https://github.com/apache/incubator-doris/pull/10103#discussion_r897427437
##########
be/src/exprs/runtime_filter.cpp:
##########
@@ -986,6 +980,21 @@ Status
IRuntimeFilter::get_prepared_context(std::vector<ExprContext*>* push_expr
return Status::OK();
}
+Status
IRuntimeFilter::get_prepared_vexprs(std::vector<doris::vectorized::VExpr*>*
vexprs,
+ const RowDescriptor& desc,
+ const std::shared_ptr<MemTracker>&
tracker) {
+ DCHECK(_is_ready);
+ DCHECK(is_consumer());
+ std::lock_guard<std::mutex> guard(_inner_mutex);
+
+ if (_push_down_vexprs.empty()) {
Review Comment:
_push_down_vexprs should be a local variable, not a class member.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]