wirybeaver commented on code in PR #17235:
URL: https://github.com/apache/pinot/pull/17235#discussion_r2677047497


##########
pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/PinotHelixResourceManager.java:
##########
@@ -1729,8 +1734,21 @@ public void updateDatabaseConfig(DatabaseConfig 
databaseConfig) {
    */
   public void addTable(TableConfig tableConfig)
       throws IOException {
+    addTable(tableConfig, Collections.emptyList());
+  }
+
+  /**
+   * Performs validations of table config and adds the table to zookeeper

Review Comment:
   Oh, I just copy the javadoc of original addTable.
   
    /**
      * Performs validations of table config and adds the table to zookeeper
      * @throws InvalidTableConfigException if validations fail
      * @throws TableAlreadyExistsException for offline tables only if the 
table already exists
      */
     public void addTable(TableConfig tableConfig)
         throws IOException {
       addTable(tableConfig, Collections.emptyList());
     }



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to