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


##########
be/src/exprs/runtime_filter_slots.h:
##########
@@ -48,11 +48,11 @@ class VRuntimeFilterSlots {
         std::map<int, bool> has_in_filter;
 
         auto ignore_local_filter = [&](int filter_id) {
-            if (_is_global) {
-                return Status::OK();
-            }
+            auto runtime_filter_mgr = _is_global ? 
state->get_query_ctx()->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 = _is_global ? 
state->get_query_ctx()->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: 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