alex-plekhanov commented on code in PR #12042: URL: https://github.com/apache/ignite/pull/12042#discussion_r2066784532
########## 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: 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org