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 (apache#12485)

Signed-off-by: freemandealer <[email protected]>
  • Loading branch information
freemandealer authored and Henry2SS committed Sep 9, 2022
1 parent 6cac744 commit ca356fc
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 @@ -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));
Expand Down

0 comments on commit ca356fc

Please sign in to comment.