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


##########
be/src/vec/sink/load_stream_stub.h:
##########
@@ -195,6 +195,8 @@ class LoadStreamStub : public 
std::enable_shared_from_this<LoadStreamStub> {
 
     int64_t dst_id() const { return _dst_id; }
 
+    bool is_incremental() { return _is_incremental; }

Review Comment:
   warning: method 'is_incremental' can be made const 
[readability-make-member-function-const]
   
   ```suggestion
       bool is_incremental() const { return _is_incremental; }
   ```
   



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