AMashenkov commented on code in PR #1067:
URL: https://github.com/apache/ignite-3/pull/1067#discussion_r975120740
##########
modules/index/src/main/java/org/apache/ignite/internal/index/IndexManager.java:
##########
@@ -153,12 +134,23 @@ public CompletableFuture<Index<?>> createIndexAsync(
try {
validateName(indexName);
- CompletableFuture<Index<?>> future = new CompletableFuture<>();
+ // TODO: IGNITE-17677 Refactoring of usage IgniteObjectName
utility class
+ String canonicalIndexName =
parseCanonicalName(canonicalName(schemaName, indexName));
+
+ CompletableFuture<Boolean> future = new CompletableFuture<>();
+
+ // TODO: IGNITE-17677 Refactoring of usage IgniteObjectName
utility class
+ String canonicalName =
parseCanonicalName(canonicalName(schemaName, tableName));
Review Comment:
```suggestion
String canonicalTableName =
parseCanonicalName(canonicalName(schemaName, tableName));
```
--
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]