xtern commented on code in PR #1237:
URL: https://github.com/apache/ignite-3/pull/1237#discussion_r1009597190
##########
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/exec/rel/IndexScanNode.java:
##########
@@ -70,9 +74,9 @@
/** Participating columns. */
private final @Nullable BitSet requiredColumns;
- private final RangeIterable<RowT> rangeConditions;
+ private final @Nullable Comparator<BinaryTuple> comp;
Review Comment:
Fixed, thanks.
##########
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/exec/rel/IndexScanNode.java:
##########
@@ -70,9 +74,9 @@
/** Participating columns. */
private final @Nullable BitSet requiredColumns;
- private final RangeIterable<RowT> rangeConditions;
+ private final @Nullable Comparator<BinaryTuple> comp;
- private Iterator<RangeCondition<RowT>> rangeConditionIterator;
+ private final @Nullable Iterator<RangeCondition<RowT>>
rangeConditionIterator;
Review Comment:
Done, thanks.
--
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]