You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ignite.apache.org by GitBox <gi...@apache.org> on 2022/11/15 09:12:35 UTC

[GitHub] [ignite-3] AMashenkov commented on a diff in pull request #1334: IGNITE-17704 Get rid of usage of RelDataType in execution nodes

AMashenkov commented on code in PR #1334:
URL: https://github.com/apache/ignite-3/pull/1334#discussion_r1022525852


##########
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/exec/rel/RootNode.java:
##########
@@ -64,28 +63,41 @@
      * TODO Documentation https://issues.apache.org/jira/browse/IGNITE-15859
      *
      * @param ctx Execution context.
-     * @param rowType Rel data type.
      */
-    public RootNode(ExecutionContext<RowT> ctx, RelDataType rowType) {
-        super(ctx, rowType);
+    public RootNode(ExecutionContext<RowT> ctx) {
+        super(ctx);

Review Comment:
   ```suggestion
           this(ctx, Functions.identity());
   ```



-- 
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-unsubscribe@ignite.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org