alex-plekhanov commented on code in PR #12600:
URL: https://github.com/apache/ignite/pull/12600#discussion_r2707022484
##########
modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/rel/ScanNode.java:
##########
@@ -34,13 +34,13 @@ public class ScanNode<Row> extends AbstractNode<Row>
implements SingleNode<Row>
private final Iterable<Row> src;
/** */
- @Nullable private final Predicate<Row> filter;
+ @Nullable protected final Predicate<Row> filter;
/** */
- @Nullable private final Function<Row, Row> rowTransformer;
+ @Nullable protected final Function<Row, Row> rowTransformer;
/** */
- private Iterator<Row> it;
+ protected Iterator<?> it;
Review Comment:
For `ScanTableRowNode` it's <TableRow> iterator, not <Row>, while `src` -
still <Row> iterable (and, additionaly `TableRowIterable`)
--
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]