tkalkirill commented on code in PR #2021:
URL: https://github.com/apache/ignite-3/pull/2021#discussion_r1185865922
##########
modules/storage-api/src/testFixtures/java/org/apache/ignite/internal/storage/index/AbstractSortedIndexStorageTest.java:
##########
@@ -215,12 +134,17 @@ protected SortedIndexStorage
createIndexStorage(ColumnarIndexDefinition indexDef
return tableStorage.getOrCreateSortedIndex(TEST_PARTITION,
indexConfig.id());
}
+ @Override
+ protected SortedIndexDescriptor indexDescriptor(SortedIndexStorage index) {
+ return index.indexDescriptor();
+ }
+
/**
* Tests that columns of all types are correctly serialized and
deserialized.
*/
@Test
void testRowSerialization() {
- SortedIndexStorage indexStorage =
createIndexStorage(ALL_TYPES_COLUMN_DEFINITIONS);
+ SortedIndexStorage indexStorage = createIndexStorage("TEST_IDX",
ALL_TYPES_COLUMN_DEFINITIONS);
Review Comment:
```suggestion
SortedIndexStorage indexStorage = createIndexStorage(INDEX_NAME,
ALL_TYPES_COLUMN_DEFINITIONS);
```
--
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]