github-actions[bot] commented on code in PR #45654:
URL: https://github.com/apache/doris/pull/45654#discussion_r1891536646


##########
be/src/exprs/runtime_filter.cpp:
##########
@@ -476,9 +476,15 @@ class RuntimePredicateWrapper {
                           const TExpr& probe_expr);
 
     Status merge(const RuntimePredicateWrapper* wrapper) {

Review Comment:
   warning: function 'merge' has cognitive complexity of 78 (threshold 50) 
[readability-function-cognitive-complexity]
   ```cpp
       Status merge(const RuntimePredicateWrapper* wrapper) {
              ^
   ```
   <details>
   <summary>Additional context</summary>
   
   **be/src/exprs/runtime_filter.cpp:478:** +1, including nesting penalty of 0, 
nesting level increased to 1
   ```cpp
           if (wrapper->is_disabled()) {
           ^
   ```
   **be/src/exprs/runtime_filter.cpp:483:** +1, including nesting penalty of 0, 
nesting level increased to 1
   ```cpp
           if (wrapper->is_ignored() || is_disabled()) {
           ^
   ```
   **be/src/exprs/runtime_filter.cpp:483:** +1
   ```cpp
           if (wrapper->is_ignored() || is_disabled()) {
                                     ^
   ```
   **be/src/exprs/runtime_filter.cpp:490:** +1
   ```cpp
                   _filter_type == RuntimeFilterType::IN_OR_BLOOM_FILTER &&
                                                                         ^
   ```
   **be/src/exprs/runtime_filter.cpp:495:** +1
   ```cpp
           bool can_not_merge_other = _filter_type != 
RuntimeFilterType::IN_OR_BLOOM_FILTER &&
                                                                                
            ^
   ```
   **be/src/exprs/runtime_filter.cpp:498:** +1
   ```cpp
           CHECK(!can_not_merge_in_or_bloom && !can_not_merge_other)
                                            ^
   ```
   **be/src/exprs/runtime_filter.cpp:503:** +1, including nesting penalty of 0, 
nesting level increased to 1
   ```cpp
           switch (_filter_type) {
           ^
   ```
   **be/src/exprs/runtime_filter.cpp:505:** +2, including nesting penalty of 1, 
nesting level increased to 2
   ```cpp
               if (!_context->hybrid_set) {
               ^
   ```
   **be/src/exprs/runtime_filter.cpp:510:** +2, including nesting penalty of 1, 
nesting level increased to 2
   ```cpp
               if (_max_in_num >= 0 && _context->hybrid_set->size() >= 
_max_in_num) {
               ^
   ```
   **be/src/exprs/runtime_filter.cpp:520:** +2, including nesting penalty of 1, 
nesting level increased to 2
   ```cpp
               
RETURN_IF_ERROR(_context->minmax_func->merge(wrapper->_context->minmax_func.get()));
               ^
   ```
   **be/src/common/status.h:632:** expanded from macro 'RETURN_IF_ERROR'
   ```cpp
       do {                                \
       ^
   ```
   **be/src/exprs/runtime_filter.cpp:520:** +3, including nesting penalty of 2, 
nesting level increased to 3
   ```cpp
               
RETURN_IF_ERROR(_context->minmax_func->merge(wrapper->_context->minmax_func.get()));
               ^
   ```
   **be/src/common/status.h:634:** expanded from macro 'RETURN_IF_ERROR'
   ```cpp
           if (UNLIKELY(!_status_.ok())) { \
           ^
   ```
   **be/src/exprs/runtime_filter.cpp:524:** +2, including nesting penalty of 1, 
nesting level increased to 2
   ```cpp
               RETURN_IF_ERROR(
               ^
   ```
   **be/src/common/status.h:632:** expanded from macro 'RETURN_IF_ERROR'
   ```cpp
       do {                                \
       ^
   ```
   **be/src/exprs/runtime_filter.cpp:524:** +3, including nesting penalty of 2, 
nesting level increased to 3
   ```cpp
               RETURN_IF_ERROR(
               ^
   ```
   **be/src/common/status.h:634:** expanded from macro 'RETURN_IF_ERROR'
   ```cpp
           if (UNLIKELY(!_status_.ok())) { \
           ^
   ```
   **be/src/exprs/runtime_filter.cpp:532:** +2, including nesting penalty of 1, 
nesting level increased to 2
   ```cpp
               if (other_filter_type == RuntimeFilterType::IN_OR_BLOOM_FILTER) {
               ^
   ```
   **be/src/exprs/runtime_filter.cpp:536:** +2, including nesting penalty of 1, 
nesting level increased to 2
   ```cpp
               if (real_filter_type == RuntimeFilterType::IN_FILTER) {
               ^
   ```
   **be/src/exprs/runtime_filter.cpp:540:** +3, including nesting penalty of 2, 
nesting level increased to 3
   ```cpp
                   if (other_filter_type == RuntimeFilterType::IN_FILTER) {
                   ^
   ```
   **be/src/exprs/runtime_filter.cpp:542:** +4, including nesting penalty of 3, 
nesting level increased to 4
   ```cpp
                       if (_max_in_num >= 0 && _context->hybrid_set->size() >= 
_max_in_num) {
                       ^
   ```
   **be/src/exprs/runtime_filter.cpp:544:** +5, including nesting penalty of 4, 
nesting level increased to 5
   ```cpp
                           
RETURN_IF_ERROR(_context->bloom_filter_func->init_with_fixed_length());
                           ^
   ```
   **be/src/common/status.h:632:** expanded from macro 'RETURN_IF_ERROR'
   ```cpp
       do {                                \
       ^
   ```
   **be/src/exprs/runtime_filter.cpp:544:** +6, including nesting penalty of 5, 
nesting level increased to 6
   ```cpp
                           
RETURN_IF_ERROR(_context->bloom_filter_func->init_with_fixed_length());
                           ^
   ```
   **be/src/common/status.h:634:** expanded from macro 'RETURN_IF_ERROR'
   ```cpp
           if (UNLIKELY(!_status_.ok())) { \
           ^
   ```
   **be/src/exprs/runtime_filter.cpp:545:** +5, including nesting penalty of 4, 
nesting level increased to 5
   ```cpp
                           RETURN_IF_ERROR(change_to_bloom_filter());
                           ^
   ```
   **be/src/common/status.h:632:** expanded from macro 'RETURN_IF_ERROR'
   ```cpp
       do {                                \
       ^
   ```
   **be/src/exprs/runtime_filter.cpp:545:** +6, including nesting penalty of 5, 
nesting level increased to 6
   ```cpp
                           RETURN_IF_ERROR(change_to_bloom_filter());
                           ^
   ```
   **be/src/common/status.h:634:** expanded from macro 'RETURN_IF_ERROR'
   ```cpp
           if (UNLIKELY(!_status_.ok())) { \
           ^
   ```
   **be/src/exprs/runtime_filter.cpp:547:** +1, nesting level increased to 3
   ```cpp
                   } else {
                     ^
   ```
   **be/src/exprs/runtime_filter.cpp:550:** +4, including nesting penalty of 3, 
nesting level increased to 4
   ```cpp
                       RETURN_IF_ERROR(change_to_bloom_filter());
                       ^
   ```
   **be/src/common/status.h:632:** expanded from macro 'RETURN_IF_ERROR'
   ```cpp
       do {                                \
       ^
   ```
   **be/src/exprs/runtime_filter.cpp:550:** +5, including nesting penalty of 4, 
nesting level increased to 5
   ```cpp
                       RETURN_IF_ERROR(change_to_bloom_filter());
                       ^
   ```
   **be/src/common/status.h:634:** expanded from macro 'RETURN_IF_ERROR'
   ```cpp
           if (UNLIKELY(!_status_.ok())) { \
           ^
   ```
   **be/src/exprs/runtime_filter.cpp:552:** +1, nesting level increased to 2
   ```cpp
               } else {
                 ^
   ```
   **be/src/exprs/runtime_filter.cpp:553:** +3, including nesting penalty of 2, 
nesting level increased to 3
   ```cpp
                   if (other_filter_type == RuntimeFilterType::IN_FILTER) {
                   ^
   ```
   **be/src/exprs/runtime_filter.cpp:556:** +1, nesting level increased to 3
   ```cpp
                   } else {
                     ^
   ```
   **be/src/exprs/runtime_filter.cpp:558:** +4, including nesting penalty of 3, 
nesting level increased to 4
   ```cpp
                       RETURN_IF_ERROR(_context->bloom_filter_func->merge(
                       ^
   ```
   **be/src/common/status.h:632:** expanded from macro 'RETURN_IF_ERROR'
   ```cpp
       do {                                \
       ^
   ```
   **be/src/exprs/runtime_filter.cpp:558:** +5, including nesting penalty of 4, 
nesting level increased to 5
   ```cpp
                       RETURN_IF_ERROR(_context->bloom_filter_func->merge(
                       ^
   ```
   **be/src/common/status.h:634:** expanded from macro 'RETURN_IF_ERROR'
   ```cpp
           if (UNLIKELY(!_status_.ok())) { \
           ^
   ```
   
   </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: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to