github-actions[bot] commented on code in PR #27735:
URL: https://github.com/apache/doris/pull/27735#discussion_r1408666590
##########
be/src/vec/sink/writer/vtablet_writer.h:
##########
@@ -536,6 +536,8 @@ class VTabletWriter final : public AsyncResultWriter {
bool is_close_done();
+ bool is_inited() { return _inited; }
Review Comment:
warning: method 'is_inited' can be made const
[readability-make-member-function-const]
```suggestion
bool is_inited() const { return _inited; }
```
--
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]