Skip to content

Commit

Permalink
[fix](index compaction)Remove return error in merged rows check apach…
Browse files Browse the repository at this point in the history
  • Loading branch information
qidaye committed Aug 2, 2024
1 parent d492056 commit a9c94b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/olap/compaction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -431,8 +431,8 @@ Status Compaction::do_compaction_impl(int64_t permits) {
stats.merged_rows, missed_rows_size, _tablet->tablet_id(),
_tablet->table_id());
DCHECK(false) << err_msg;
// Log here just for debugging, do not return error.
LOG(WARNING) << err_msg;
return Status::InternalError(err_msg);
}
}

Expand Down

0 comments on commit a9c94b3

Please sign in to comment.