github-actions[bot] commented on code in PR #25470: URL: https://github.com/apache/doris/pull/25470#discussion_r1369492360
########## be/src/vec/data_types/serde/data_type_date64_serde.cpp: ########## @@ -271,7 +271,8 @@ Status DataTypeDate64SerDe::write_column_to_mysql(const IColumn& column, return _write_column_to_mysql(column, row_buffer, row_idx, col_const); } -Status DataTypeDate64SerDe::write_column_to_orc(const IColumn& column, const NullMap* null_map, +Status DataTypeDate64SerDe::write_column_to_orc(const std::string& timezone, const IColumn& column, Review Comment: warning: method 'write_column_to_orc' can be made static [readability-convert-member-functions-to-static] ```suggestion static Status DataTypeDate64SerDe::write_column_to_orc(const std::string& timezone, const IColumn& column, ``` be/src/vec/data_types/serde/data_type_date64_serde.cpp:277: ```diff - std::vector<StringRef>& buffer_list) const { + std::vector<StringRef>& buffer_list) { ``` -- 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