From 22dec46f4849491197ffa037ebed1e435dd6e0bc Mon Sep 17 00:00:00 2001 From: zhengyu Date: Fri, 9 Sep 2022 09:03:06 +0800 Subject: [PATCH] [fix](vectorized load) fix incomplete errmsg when find partition failed (#12485) Signed-off-by: freemandealer --- 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 025de0a035..b07ee27e0d 100644 --- a/be/src/vec/sink/vtablet_sink.cpp +++ b/be/src/vec/sink/vtablet_sink.cpp @@ -506,7 +506,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));