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


##########
modules/storage-rocksdb/src/main/java/org/apache/ignite/internal/storage/rocksdb/RocksDbMetaStorage.java:
##########
@@ -103,13 +112,85 @@ void putPartitionId(int partitionId) {
         }
     }
 
+    /**
+     * Puts last row ID for which the index was built, {@code null} means 
index building is finished.
+     *
+     * @param partitionId Partition ID.
+     * @param indexId Index ID.
+     * @param rowId Row ID.
+     */
+    public void putIndexLastBuildRowId(int partitionId, UUID indexId, 
@Nullable RowId rowId) {
+        try {
+            metaColumnFamily.put(indexMetaKey(partitionId, indexId), 
indexLastBuildRowId(rowId));

Review Comment:
   Forgot about that, 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]

Reply via email to