eric-maynard commented on code in PR #1942:
URL: https://github.com/apache/polaris/pull/1942#discussion_r2167780108
##########
runtime/admin/src/main/java/org/apache/polaris/admintool/BootstrapCommand.java:
##########
@@ -71,6 +78,23 @@ static class FileInputOptions {
description = "A file containing root principal credentials to
bootstrap.")
Path file;
}
+
+ static class SchemaInputOptions {
+ @CommandLine.Option(
+ names = {"-v", "--schema-version"},
+ paramLabel = "<schema version>",
+ description = "The version of the schema to load in [1, 2, LATEST].",
+ defaultValue = SchemaOptions.LATEST)
+ String schemaVersion;
+
+ @CommandLine.Option(
+ names = {"--schema-file"},
+ paramLabel = "<schema file>",
+ description =
+ "A schema file to bootstrap from. If unset, the bundled files
will be used.",
Review Comment:
I would actually like to modify that behavior; let me make some changes to
support both resources on the classpath and arbitrary files to see what you
think
--
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]