jacktengg commented on code in PR #67006:
URL: https://github.com/apache/doris/pull/67006#discussion_r3829064743
##########
be/src/runtime/fragment_mgr.cpp:
##########
@@ -1189,10 +1237,15 @@ Status FragmentMgr::merge_filter(const
PMergeFilterRequest* request,
query_id.__set_lo(queryid.lo);
if (auto q_ctx = get_query_ctx(query_id)) {
SCOPED_ATTACH_TASK(q_ctx.get());
- if (!q_ctx->get_merge_controller_handler()) {
+ auto handler = q_ctx->get_merge_controller_handler();
+ if (!handler) {
return Status::InternalError("Merge filter failed: Merge
controller handler is null");
}
- return q_ctx->get_merge_controller_handler()->merge(q_ctx, request,
attach_data);
+ auto status = handler->merge(q_ctx, request, attach_data);
+ if (handler->all_filters_published()) {
Review Comment:
Fixed
--
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]