This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch compaction_opt in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/compaction_opt by this push: new 51b94de909 [bugfix](ordered_compaction) fix is_rowset_tidy (#14505) 51b94de909 is described below commit 51b94de909c95473cc4060ed863967e99269f3ba Author: yixiutt <102007456+yixi...@users.noreply.github.com> AuthorDate: Wed Nov 23 10:11:47 2022 +0800 [bugfix](ordered_compaction) fix is_rowset_tidy (#14505) --- be/src/olap/compaction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/olap/compaction.cpp b/be/src/olap/compaction.cpp index 797a63e4a9..73aeb76dea 100644 --- a/be/src/olap/compaction.cpp +++ b/be/src/olap/compaction.cpp @@ -128,7 +128,7 @@ bool Compaction::is_rowset_tidy(std::string& pre_max_key, const RowsetSharedPtr& if (min_key < pre_max_key) { return false; } - DCHECK(rhs->max_key(&pre_max_key)); + CHECK(rhs->max_key(&pre_max_key)); return true; } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org