This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.1.2 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/dev-1.1.2 by this push: new 4b25a6ec1e [fix](vectorized load) fix incomplete errmsg when find partition failed (#12485) 4b25a6ec1e is described below commit 4b25a6ec1ef93e85be0c75a127b3977cafdc6ef8 Author: zhengyu <freeman.zhang1...@gmail.com> AuthorDate: Fri Sep 9 09:03:06 2022 +0800 [fix](vectorized load) fix incomplete errmsg when find partition failed (#12485) Signed-off-by: freemandealer <freeman.zhang1...@gmail.com> --- be/src/vec/sink/vtablet_sink.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/be/src/vec/sink/vtablet_sink.cpp b/be/src/vec/sink/vtablet_sink.cpp index f0239b23c6..2288c2dc32 100644 --- a/be/src/vec/sink/vtablet_sink.cpp +++ b/be/src/vec/sink/vtablet_sink.cpp @@ -133,7 +133,8 @@ Status VOlapTableSink::send(RuntimeState* state, vectorized::Block* input_block) []() -> std::string { return ""; }, [&]() -> std::string { fmt::memory_buffer buf; - fmt::format_to(buf, "no partition for this tuple. tuple=[]"); + fmt::format_to(buf, "no partition for this tuple. tuple={}", + block.dump_data(i, 1)); return fmt::to_string(buf); }, &stop_processing)); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org