Skip to content

Commit

Permalink
[fix](vectorized load) fix incomplete errmsg when find partition fail…
Browse files Browse the repository at this point in the history
…ed (#12485)

Signed-off-by: freemandealer <freeman.zhang1992@gmail.com>
  • Loading branch information
freemandealer authored Sep 9, 2022
1 parent e84272e commit 22dec46
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion be/src/vec/sink/vtablet_sink.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 22dec46

Please sign in to comment.