yiguolei commented on code in PR #49777: URL: https://github.com/apache/doris/pull/49777#discussion_r2026641644
########## be/src/runtime_filter/runtime_filter_mgr.cpp: ########## @@ -72,13 +72,14 @@ std::vector<std::shared_ptr<RuntimeFilterConsumer>> RuntimeFilterMgr::get_consum Status RuntimeFilterMgr::register_consumer_filter(const TRuntimeFilterDesc& desc, int node_id, std::shared_ptr<RuntimeFilterConsumer>* consumer, - RuntimeProfile* parent_profile) { + RuntimeProfile* cousumer_helper_profile, + RuntimeProfile* parent_operator_profile) { SCOPED_CONSUME_MEM_TRACKER(_tracker.get()); int32_t key = desc.filter_id; std::lock_guard<std::mutex> l(_lock); - RETURN_IF_ERROR( - RuntimeFilterConsumer::create(_state, &desc, node_id, consumer, parent_profile)); + RETURN_IF_ERROR(RuntimeFilterConsumer::create( + _state, &desc, node_id, consumer, cousumer_helper_profile, parent_operator_profile)); Review Comment: cousumer_helper_profile typo error -- 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