AMashenkov commented on code in PR #5021:
URL: https://github.com/apache/ignite-3/pull/5021#discussion_r1912925237


##########
modules/client-handler/src/main/java/org/apache/ignite/client/handler/JdbcQueryEventHandlerImpl.java:
##########
@@ -210,9 +213,14 @@ private static SqlProperties createProperties(
                 throw new AssertionError("Unexpected jdbc statement type: " + 
stmtType);
         }
 
+        // TODO: https://issues.apache.org/jira/browse/IGNITE-24021
+        // Converts schema name to its canonical form.
+        String schemaNameInCanonicalForm = 
QualifiedName.fromSimple(defaultSchemaName).objectName();

Review Comment:
   ```suggestion
           // TODO: https://issues.apache.org/jira/browse/IGNITE-24021
           //  Replace this with using correct implementation of 
`IgniteNameUtils.parseSimpleName`, when it will be fixed.
           String schemaNameInCanonicalForm = 
QualifiedName.fromSimple(defaultSchemaName).objectName();
   ```
   ```suggestion
           // TODO: https://issues.apache.org/jira/browse/IGNITE-24021
           // Converts schema name to its canonical form.
           String schemaNameInCanonicalForm = 
QualifiedName.fromSimple(defaultSchemaName).objectName();
   ```



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