alex-plekhanov commented on a change in pull request #9819:
URL: https://github.com/apache/ignite/pull/9819#discussion_r804582447
##########
File path:
modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/RuntimeHashIndex.java
##########
@@ -108,11 +109,15 @@ private GroupKey key(Row r) {
/** Search row. */
private final Supplier<Row> searchRow;
+ /** Row filter. */
+ private final Predicate<Row> filter;
+
/**
* @param searchRow Search row.
*/
- IndexScan(Supplier<Row> searchRow) {
+ IndexScan(Supplier<Row> searchRow, Predicate<Row> filter) {
Review comment:
Still not nullable
--
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]