zstan commented on code in PR #3081:
URL: https://github.com/apache/ignite-3/pull/3081#discussion_r1463303780
##########
modules/catalog/src/main/java/org/apache/ignite/internal/catalog/commands/AbstractTableCommand.java:
##########
@@ -34,13 +36,17 @@ public abstract class AbstractTableCommand implements
CatalogCommand {
protected final String tableName;
AbstractTableCommand(String schemaName, String tableName) throws
CatalogValidationException {
- this.schemaName = schemaName;
+ this.schemaName = schemaName != null ? schemaName.toUpperCase() : null;
Review Comment:
done, thanks
##########
modules/catalog/src/main/java/org/apache/ignite/internal/catalog/CatalogManagerImpl.java:
##########
@@ -603,4 +603,9 @@ private static class ParentIdAwareDescriptor<T> {
this.id = id;
}
}
+
+ /** List of reserved schema names. */
+ public static List<String> reservedSchemas() {
+ return List.of(SYSTEM_SCHEMA_NAME);
+ }
Review Comment:
done
--
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]