soumitra-st commented on code in PR #13131: URL: https://github.com/apache/pinot/pull/13131#discussion_r1625954049
########## pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/TableConfigUtils.java: ########## @@ -128,10 +128,10 @@ private TableConfigUtils() { RoutingConfig.MULTI_STAGE_REPLICA_GROUP_SELECTOR_TYPE); /** - * @see TableConfigUtils#validate(TableConfig, Schema, String, boolean) + * @see TableConfigUtils#validate(TableConfig, Schema, String, boolean, boolean) */ public static void validate(TableConfig tableConfig, @Nullable Schema schema) { - validate(tableConfig, schema, null, false); + validate(tableConfig, schema, null, false, false); Review Comment: TableConfigUtils has static utility methods only. IMO, we should not store state as static variables in that class. -- 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...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org