Skip to content
Merged
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
5 changes: 1 addition & 4 deletions be/src/io/fs/multi_table_pipe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ Status MultiTablePipe::exec_plans(ExecEnv* exec_env, std::vector<ExecParam> para
_number_loaded_rows += state->num_rows_load_success();
_number_filtered_rows += state->num_rows_load_filtered();
_number_unselected_rows += state->num_rows_load_unselected();

_ctx->error_url = to_load_error_http_path(state->get_error_log_file_path());
// check filtered ratio for this plan fragment
int64_t num_selected_rows =
state->num_rows_load_total() - state->num_rows_load_unselected();
Expand All @@ -280,9 +280,6 @@ Status MultiTablePipe::exec_plans(ExecEnv* exec_env, std::vector<ExecParam> para
_ctx->max_filter_ratio) {
*status = Status::DataQualityError("too many filtered rows");
}
if (_number_filtered_rows > 0 && !state->get_error_log_file_path().empty()) {
_ctx->error_url = to_load_error_http_path(state->get_error_log_file_path());
}

// if any of the plan fragment exec failed, set the status to the first failed plan
if (!status->ok()) {
Expand Down
Loading