denis-chudov commented on code in PR #3371:
URL: https://github.com/apache/ignite-3/pull/3371#discussion_r1516421948


##########
modules/table/src/main/java/org/apache/ignite/internal/table/distributed/storage/InternalTableImpl.java:
##########
@@ -1856,11 +1892,19 @@ private class PartitionScanSubscription implements 
Subscription {
              *
              * @param subscriber The subscriber.
              */
-            private PartitionScanSubscription(Subscriber<? super BinaryRow> 
subscriber) {
+            private PartitionScanSubscription(
+                    Subscriber<? super BinaryRow> subscriber,
+                    TransactionInflights transactionInflights,
+                    boolean readOnlyTransaction,
+                    UUID txId
+            ) {
                 this.subscriber = subscriber;
                 this.canceled = new AtomicBoolean(false);
                 this.scanId = CURSOR_ID_GENERATOR.getAndIncrement();
                 this.requestedItemsCnt = new AtomicLong(0);
+                this.transactionInflights = transactionInflights;

Review Comment:
   done



##########
modules/table/src/main/java/org/apache/ignite/internal/table/distributed/storage/InternalTableImpl.java:
##########
@@ -1802,6 +1820,12 @@ private static class PartitionScanPublisher implements 
Publisher<BinaryRow> {
         /** True when the publisher has a subscriber, false otherwise. */
         private final AtomicBoolean subscribed;
 
+        private final TransactionInflights transactionInflights;
+
+        private boolean readOnlyTransaction;
+

Review Comment:
   fixed



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