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


##########
be/src/vec/functions/function.h:
##########
@@ -395,6 +404,14 @@ class IFunction : public 
std::enable_shared_from_this<IFunction>,
         return Status::OK();
     }
 
+    Status eval_inverted_index(FunctionContext* context,

Review Comment:
   warning: method 'eval_inverted_index' can be made static 
[readability-convert-member-functions-to-static]
   
   ```suggestion
       static Status eval_inverted_index(FunctionContext* context,
   ```
   
   be/src/vec/functions/function.h:409:
   ```diff
   -                                roaring::Roaring* bitmap) const override {
   +                                roaring::Roaring* bitmap) override {
   ```
   



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