This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new 370d09b0b70 [fix](index compaction)Remove return error in merged rows
check (#38732)
370d09b0b70 is described below
commit 370d09b0b70f28a2acd9ad88157cfcb172b5e9dc
Author: qiye <[email protected]>
AuthorDate: Fri Aug 2 11:36:58 2024 +0800
[fix](index compaction)Remove return error in merged rows check (#38732)
Log here just for debugging, do not return error.
---
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 1d0a592e535..fbfc0c1caca 100644
--- a/be/src/olap/compaction.cpp
+++ b/be/src/olap/compaction.cpp
@@ -510,8 +510,8 @@ Status Compaction::do_inverted_index_compaction() {
} else {
DCHECK(false) << err_msg;
}
+ // log here just for debugging, do not return error
LOG(WARNING) << err_msg;
- return Status::InternalError(err_msg);
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]