github-actions[bot] commented on code in PR #43690:
URL: https://github.com/apache/doris/pull/43690#discussion_r1837554159


##########
be/src/olap/tablet_schema.cpp:
##########
@@ -1533,6 +1536,7 @@ bool operator==(const TabletSchema& a, const 
TabletSchema& b) {
     if (a._enable_single_replica_compaction != 
b._enable_single_replica_compaction) return false;
     if (a._store_row_column != b._store_row_column) return false;
     if (a._row_store_page_size != b._row_store_page_size) return false;
+    if (a._storage_page_size != b._storage_page_size) return false;

Review Comment:
   warning: statement should be inside braces 
[readability-braces-around-statements]
   
   ```suggestion
       if (a._storage_page_size != b._storage_page_size) { 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

Reply via email to