github-actions[bot] commented on code in PR #25818: URL: https://github.com/apache/doris/pull/25818#discussion_r1370100097
########## be/src/runtime/routine_load/data_consumer_group.h: ########## @@ -77,6 +84,8 @@ class DataConsumerGroup { // when the counter becomes zero, shutdown the queue to finish std::mutex _mutex; int _counter; + // received total rows + int64_t _rows; Review Comment: warning: use default member initializer for '_rows' [modernize-use-default-member-init] be/src/runtime/routine_load/data_consumer_group.h:51: ```diff - _rows(0) {} + {} ``` ```suggestion int64_t _rows{0}; ``` -- 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