alex-plekhanov commented on code in PR #12599:
URL: https://github.com/apache/ignite/pull/12599#discussion_r2648301840


##########
modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/AbstractCacheScan.java:
##########
@@ -43,36 +41,52 @@ public abstract class AbstractCacheScan<Row> implements 
Iterable<Row>, AutoClose
     protected final AffinityTopologyVersion topVer;
 
     /** */
-    protected final int[] parts;
+    protected final BitSet parts;
 
     /** */
-    protected final boolean explicitParts;
+    private final int[] explicitParts;
 
     /** */
     private PartitionReservation reservation;
 
-    /** */
-    protected volatile List<GridDhtLocalPartition> reservedParts;
-
     /** */
     AbstractCacheScan(ExecutionContext<Row> ectx, GridCacheContext<?, ?> cctx, 
int[] parts) {
         this.ectx = ectx;
         this.cctx = cctx;
 
         topVer = ectx.topologyVersion();
 
-        explicitParts = parts != null;
+        explicitParts = parts;

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