sashapolo commented on code in PR #1014:
URL: https://github.com/apache/ignite-3/pull/1014#discussion_r946909212
##########
modules/storage-api/src/main/java/org/apache/ignite/internal/storage/engine/MvTableStorage.java:
##########
@@ -78,6 +79,16 @@ public interface MvTableStorage {
@Nullable
SortedIndexStorage getSortedIndex(int partitionId, String indexName);
+ /**
+ * Returns an already created Hash Index with the given name or {@code
null} if it does not exist.
+ *
+ * @param partitionId Partition ID for which this index has been built.
+ * @param indexName Index name.
+ * @return Hash Index storage or {@code null} if it does not exist..
+ */
+ @Nullable
+ HashIndexStorage getHashIndex(int partitionId, String indexName);
Review Comment:
I personally don't like this formatting, sorry
--
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]