yiguolei commented on code in PR #35018: URL: https://github.com/apache/doris/pull/35018#discussion_r1605813382
########## be/src/runtime/runtime_filter_mgr.cpp: ########## @@ -411,7 +411,8 @@ Status RuntimeFilterMergeControllerEntity::merge(const PMergeFilterRequest* requ RuntimeFilterWrapperHolder holder; RETURN_IF_ERROR(IRuntimeFilter::create_wrapper(¶ms, pool, holder.getHandle())); - RETURN_IF_ERROR(cnt_val->filter->merge_from(holder.getHandle()->get())); + // prevent error ignored + CHECK(cnt_val->filter->merge_from(holder.getHandle()->get())) << "rf merge failed"; Review Comment: why check here? It will core online. -- 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