sashapolo commented on code in PR #3488:
URL: https://github.com/apache/ignite-3/pull/3488#discussion_r1540638024


##########
modules/storage-rocksdb/src/main/java/org/apache/ignite/internal/storage/rocksdb/RocksDbIndexes.java:
##########
@@ -69,41 +69,32 @@ void recoverIndexes(StorageIndexDescriptorSupplier 
indexDescriptorSupplier) thro
                 if (descriptor == null) {
                     deleteByPrefix(writeBatch, rocksDb.hashIndexCf(), 
indexPrefix(tableId, indexId));
                 } else {
-                    hashIndices.put(indexId, new HashIndex(rocksDb, tableId, 
descriptor, rocksDb.meta));
+                    hashIndices.put(indexId, new HashIndex(tableId, 
rocksDb.hashIndexCf(), descriptor, rocksDb.meta));
                 }
             }
 
-            var indexCfsToDestroy = new ArrayList<Map.Entry<Integer, 
ColumnFamily>>();
+            var indexCfsToDestroy = new ArrayList<IndexColumnFamily>();

Review Comment:
   Specially for you!



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