sanpwc commented on code in PR #1165: URL: https://github.com/apache/ignite-3/pull/1165#discussion_r991161358
########## modules/table/src/main/java/org/apache/ignite/internal/table/distributed/replicator/PartitionReplicaListener.java: ########## @@ -1051,4 +1158,62 @@ private CompletableFuture<Void> ensureReplicaIsPrimary(ReplicaRequest request) { return CompletableFuture.completedFuture(null); } } + + /** + * Cursor wrapper to resolve a write intent, which may be required for scan by timestamp. + */ + private class BinaryRowCursorWrapper implements Cursor<BinaryRow> { Review Comment: Do you mean one that might be handled as follows: ``` BinaryRow resolvedReadResult = resolveReadResult(cursor.next()); if (resolvedReadResult != null) { batchRows.add(resolvedReadResult); } ``` ? -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org