tkalkirill commented on code in PR #2021:
URL: https://github.com/apache/ignite-3/pull/2021#discussion_r1185126021


##########
modules/storage-api/src/testFixtures/java/org/apache/ignite/internal/storage/index/AbstractSortedIndexStorageTest.java:
##########
@@ -238,40 +162,11 @@ void testRowSerialization() {
 
     @Test
     void testEmpty() {
-        SortedIndexStorage index = 
createIndexStorage(shuffledRandomDefinitions());
+        SortedIndexStorage index = createIndexStorage("TEST_IDX", 
shuffledRandomDefinitions());

Review Comment:
   ```suggestion
           SortedIndexStorage index = createIndexStorage(INDEX_NAME", 
shuffledRandomDefinitions());
   ```



##########
modules/storage-api/src/testFixtures/java/org/apache/ignite/internal/storage/index/AbstractSortedIndexStorageTest.java:
##########
@@ -1539,7 +1375,7 @@ private List<ColumnDefinition> 
shuffledDefinitions(Predicate<ColumnDefinition> f
      * be removed.
      */
     private void testPutGetRemove(List<ColumnDefinition> indexSchema) {
-        SortedIndexStorage indexStorage = createIndexStorage(indexSchema);
+        SortedIndexStorage indexStorage = createIndexStorage("TEST_IDX", 
indexSchema);

Review Comment:
   ```suggestion
           SortedIndexStorage indexStorage = createIndexStorage(INDEX_NAME, 
indexSchema);
   ```



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