[fix](vectorized load) fix incomplete errmsg when find partition failed (#12485)

Signed-off-by: freemandealer <freeman.zhang1992@gmail.com>
This commit is contained in:
zhengyu
2022-09-09 09:03:06 +08:00
committed by GitHub
parent e84272ed43
commit 22dec46f48

View File

@ -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));