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


##########
be/src/exprs/runtime_filter_slots.h:
##########
@@ -48,11 +48,14 @@ class VRuntimeFilterSlots {
         std::map<int, bool> has_in_filter;
 
         auto ignore_local_filter = [&](int filter_id) {
+            // Now pipeline x have bug in ignore, after fix the problem enable 
ignore logic in pipeline x
             if (_is_global) {
                 return Status::OK();
             }
+            auto runtime_filter_mgr = state->runtime_filter_mgr();

Review Comment:
   warning: 'auto runtime_filter_mgr' can be declared as 'auto 
*runtime_filter_mgr' [readability-qualified-auto]
   
   ```suggestion
               auto *runtime_filter_mgr = state->runtime_filter_mgr();
   ```
   



-- 
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]

Reply via email to