github-actions[bot] commented on code in PR #42379:
URL: https://github.com/apache/doris/pull/42379#discussion_r1814904730
##########
be/src/cloud/cloud_cumulative_compaction.cpp:
##########
@@ -351,14 +351,15 @@ Status CloudCumulativeCompaction::modify_rowsets() {
stats.num_rows(),
stats.data_size());
}
}
- if (_tablet->keys_type() == KeysType::UNIQUE_KEYS &&
+ if (config::enable_cloud_delete_old_version_delete_bitmap &&
+ _tablet->keys_type() == KeysType::UNIQUE_KEYS &&
_tablet->enable_unique_key_merge_on_write() && _input_rowsets.size()
!= 1) {
- process_old_version_delete_bitmap();
+ RETURN_IF_ERROR(process_old_version_delete_bitmap());
}
return Status::OK();
}
-void CloudCumulativeCompaction::process_old_version_delete_bitmap() {
+Status CloudCumulativeCompaction::process_old_version_delete_bitmap() {
Review Comment:
warning: function 'process_old_version_delete_bitmap' exceeds recommended
size/complexity thresholds [readability-function-size]
```cpp
Status CloudCumulativeCompaction::process_old_version_delete_bitmap() {
^
```
<details>
<summary>Additional context</summary>
**be/src/cloud/cloud_cumulative_compaction.cpp:361:** 105 lines including
whitespace and comments (threshold 80)
```cpp
Status CloudCumulativeCompaction::process_old_version_delete_bitmap() {
^
```
</details>
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]