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


##########
modules/transactions/src/main/java/org/apache/ignite/internal/tx/TxMeta.java:
##########
@@ -35,39 +35,65 @@ public class TxMeta implements TransactionMeta {
     private final TxState txState;
 
     /** The list of enlisted partitions. */
-    private final List<TablePartitionId> enlistedPartitions;
+    private final Collection<TablePartitionId> enlistedPartitions;
 
     /** Commit timestamp. */
     @Nullable
     private final HybridTimestamp commitTimestamp;
 
+    /** Whether the locks are released. */
+    private final boolean locksReleased;

Review Comment:
   Yes, but we don't know that. The point of this flag is to have explicit 
confirmation that locks have been released, and without it, we should keep 
trying to get such confirmation.



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