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


##########
modules/table/src/main/java/org/apache/ignite/internal/table/distributed/raft/PartitionListener.java:
##########
@@ -591,4 +613,12 @@ private void markFinished(UUID txId, boolean commit, 
@Nullable HybridTimestamp c
                 commit ? commitTimestamp : null
         ));
     }
+
+    private List<Integer> indexIdsForRwUpdateOperation(int tableId, 
HybridTimestamp opTs) {
+        return indexIdsForRwUpdateOperation(tableId, 
catalogService.activeCatalogVersion(opTs.longValue()));
+    }
+
+    private List<Integer> indexIdsForRwUpdateOperation(int tableId, int 
catalogVersion) {
+        return view(indexChooser.chooseForRwTxUpdateOperation(catalogVersion, 
tableId), CatalogObjectDescriptor::id);

Review Comment:
   Sure, 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