walterddr commented on a change in pull request #7921: URL: https://github.com/apache/pinot/pull/7921#discussion_r773464449
########## File path: pinot-controller/src/main/java/org/apache/pinot/controller/api/resources/PinotTableRestletResource.java ########## @@ -508,22 +516,28 @@ public String checkTableConfig(String tableConfigStr) { + "Validate given table config and schema. If specified schema is null, attempt to retrieve schema using the " + "table name. This API returns the table config that matches the one you get from 'GET /tables/{tableName}'." + " This allows us to validate table config before apply.") - public String validateTableAndSchema(TableAndSchemaConfig tableSchemaConfig) { + public String validateTableAndSchema( + TableAndSchemaConfig tableSchemaConfig, + @ApiParam(value = "comma separated list of validation skip") @QueryParam("typesToSkip") String typesToSkip) { Review comment: oh, good catch (thanks Intellij refactor :-P ) for the naming i think @Jackie-Jiang and I chatted about `skipValidations` seems to indicate it should be a boolean. but couldn't find a name that's short enough for the queryparam. let's leave it as `validationTypesToSkip` for now. -- 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