Vladsz83 commented on code in PR #12042: URL: https://github.com/apache/ignite/pull/12042#discussion_r2062686560
########## modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/LogicalRelImplementor.java: ########## @@ -880,6 +882,22 @@ else if (rel instanceof Intersect) return node; } + /** {@inheritDoc} */ + @Override public Node<Row> visit(IgniteUncollect rel) { + UncollectNode<Row> node = new UncollectNode<>( + ctx, + rel.getInput().getRowType(), + rel.getRowType(), + rel.withOrdinality + ); + + Node<Row> input = visit(rel.getInput()); Review Comment: Minor: can be `node.register(visit(rel.getInput()));` -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org