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


##########
modules/storage-api/src/main/java/org/apache/ignite/internal/storage/RowId.java:
##########
@@ -163,4 +163,11 @@ public int compareTo(RowId rowId) {
     public String toString() {
         return "RowId [partitionId=" + partitionId() + ", uuid=" + uuid + ']';
     }
+
+    /**
+     * Returns {@code true} if the lowest row ID.
+     */
+    public boolean isLowest() {

Review Comment:
   Remove it.



##########
modules/storage-page-memory/src/main/java/org/apache/ignite/internal/storage/pagememory/index/hash/PageMemoryHashIndexStorage.java:
##########
@@ -91,12 +91,15 @@ public class PageMemoryHashIndexStorage implements 
HashIndexStorage {
      * @param freeList Free list to store index columns.
      * @param hashIndexTree Hash index tree instance.
      * @param indexMetaTree Index meta tree instance.
+     * @param lastBuiltIndexRowUuid Last row ID uuid that has been processed 
by an ongoing index build process, {@code null} if the process
+     *      has finished.
      */
     public PageMemoryHashIndexStorage(
             HashIndexDescriptor descriptor,
             IndexColumnsFreeList freeList,
             HashIndexTree hashIndexTree,
-            IndexMetaTree indexMetaTree
+            IndexMetaTree indexMetaTree,
+            @Nullable UUID lastBuiltIndexRowUuid

Review Comment:
   Fix it.



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