You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2023/01/17 09:05:24 UTC

[GitHub] [doris] github-actions[bot] commented on a diff in pull request #15814: [refactor](remove non vectorized) remove non vectorized expr and expr context

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


##########
be/src/exprs/runtime_filter.h:
##########
@@ -147,7 +147,6 @@ class IRuntimeFilter {
               _role(RuntimeFilterRole::PRODUCER),
               _expr_order(-1),
               _always_true(false),
-              _probe_ctx(nullptr),
               _is_ignored(false),

Review Comment:
   warning: initializer '_probe_ctx' does not name a non-static data member or base class; did you mean the member '_vprobe_ctx'? [clang-diagnostic-error]
   
   ```suggestion
                 _vprobe_ctx(nullptr),
   ```
   **be/src/exprs/runtime_filter.h:345:** '_vprobe_ctx' declared here
   ```cpp
       doris::vectorized::VExprContext* _vprobe_ctx;
                                        ^
   ```
   



-- 
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-unsubscribe@doris.apache.org

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


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