This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.1 by this push:
new 73de3f55f69 branch-4.1: [Exec](status) materialization_opertor return
the error status by row_id_fetcher #62513 (#64628)
73de3f55f69 is described below
commit 73de3f55f697de1fca797376ac7db96e53d1954d
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Jun 20 21:36:52 2026 +0800
branch-4.1: [Exec](status) materialization_opertor return the error status
by row_id_fetcher #62513 (#64628)
Cherry-picked from #62513
Co-authored-by: HappenLee <[email protected]>
---
be/src/exec/operator/materialization_opertor.cpp | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/be/src/exec/operator/materialization_opertor.cpp
b/be/src/exec/operator/materialization_opertor.cpp
index 17ea2664e0f..f2349476e4f 100644
--- a/be/src/exec/operator/materialization_opertor.cpp
+++ b/be/src/exec/operator/materialization_opertor.cpp
@@ -424,6 +424,12 @@ Status MaterializationOperator::push(RuntimeState* state,
Block* in_block, bool
" target_backend_id:" + std::to_string(backend_id);
return Status::InternalError(error_text);
}
+ if (rpc_struct.response.status().status_code() != 0) {
+ Status st = Status::create(rpc_struct.response.status());
+ st.append(fmt::format(", Backend:{}, Materialization Sink node
id:{}", backend_id,
+ node_id()));
+ return st;
+ }
rpc_struct.cntl->Reset();
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]