lowka commented on code in PR #3081:
URL: https://github.com/apache/ignite-3/pull/3081#discussion_r1462942850


##########
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:
   I think we should avoid calling uppercase on schema name.
   



-- 
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]

Reply via email to