HappenLee commented on code in PR #16383: URL: https://github.com/apache/doris/pull/16383#discussion_r1107167131
########## be/src/pipeline/pipeline_fragment_context.cpp: ########## @@ -272,6 +273,139 @@ Status PipelineFragmentContext::prepare(const doris::TExecPlanFragmentParams& re return Status::OK(); } +Status PipelineFragmentContext::prepare(const doris::TPipelineParams& request, const size_t idx) { + if (_prepared) { + return Status::InternalError("Already prepared"); + } + TPipelineLocalParams local_params = request.local_params[idx]; Review Comment: same to up -- 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