This is an automated email from the ASF dual-hosted git repository.
jianliangqi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 1ada810b5a6 [fix](index compaction)Remove return error in merged rows
check (#38732)
1ada810b5a6 is described below
commit 1ada810b5a6f88fe082cb84c8c665a8561f31bd1
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 8dc49b215bc..2190521589c 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]