github-actions[bot] commented on code in PR #17999: URL: https://github.com/apache/doris/pull/17999#discussion_r1143240033
########## be/src/vec/exec/scan/vscanner.h: ########## @@ -67,6 +69,8 @@ class VScanner { int64_t get_rows_read() const { return _num_rows_read; } + bool is_init() { return _is_init; } Review Comment: warning: method 'is_init' can be made const [readability-make-member-function-const] ```suggestion bool is_init() const { return _is_init; } ``` -- 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