Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "[temporary](log) Add temporary log for debug insert into lost result (#30140)" #30382

Merged
merged 1 commit into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions be/src/vec/exec/vunion_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,7 @@ Status VUnionNode::get_next_const(RuntimeState* state, Block* block) {
}
}
block->set_columns(std::move(mblock.mutable_columns()));
LOG(INFO) << "temporary log query id: " << print_id(state->query_id())
<< ", instance id: " << print_id(state->fragment_instance_id())
<< ", block rows: " << block->rows();

// some insert query like "insert into string_test select 1, repeat('a', 1024 * 1024);"
// the const expr will be in output expr cause the union node return a empty block. so here we
// need add one row to make sure the union node exec const expr return at least one row
Expand Down
4 changes: 1 addition & 3 deletions be/src/vec/sink/writer/vtablet_writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1603,9 +1603,7 @@ Status VTabletWriter::write(doris::vectorized::Block& input_block) {
if (_state->query_options().dry_run_query) {
return status;
}
LOG(INFO) << "temporary log query id: " << print_id(_state->query_id())
<< ", instance id: " << print_id(_state->fragment_instance_id())
<< ", block rows: " << input_block.rows();

// check out of limit
RETURN_IF_ERROR(_send_new_partition_batch());

Expand Down
Loading