This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push: new 84aa9839a40 branch-3.0: [fix](Outfile) fix the unclear error code #45119 (#45276) 84aa9839a40 is described below commit 84aa9839a4073aa2ff132110f3c5bc4ff735936e Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> AuthorDate: Fri Dec 20 00:36:52 2024 +0800 branch-3.0: [fix](Outfile) fix the unclear error code #45119 (#45276) Cherry-picked from #45119 Co-authored-by: Tiewei Fang <fangtie...@selectdb.com> --- be/src/util/arrow/utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/util/arrow/utils.cpp b/be/src/util/arrow/utils.cpp index 742f5bd0fc3..0201373beb0 100644 --- a/be/src/util/arrow/utils.cpp +++ b/be/src/util/arrow/utils.cpp @@ -28,7 +28,7 @@ Status to_doris_status(const arrow::Status& status) { if (status.ok()) { return Status::OK(); } else { - return Status::InvalidArgument(status.ToString()); + return Status::InternalError(status.ToString()); } } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org