github-actions[bot] commented on code in PR #31888: URL: https://github.com/apache/doris/pull/31888#discussion_r1514581745
########## be/src/olap/tablet_meta.cpp: ########## @@ -907,6 +916,8 @@ bool operator==(const TabletMeta& a, const TabletMeta& b) { if (a._time_series_compaction_empty_rowsets_threshold != b._time_series_compaction_empty_rowsets_threshold) return false; + if (a._time_series_compaction_level_threshold != b._time_series_compaction_level_threshold) + return false; Review Comment: warning: statement should be inside braces [readability-braces-around-statements] ```suggestion if (a._time_series_compaction_level_threshold != b._time_series_compaction_level_threshold) { return false; } ``` -- 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