ygerzhedovich commented on code in PR #2764:
URL: https://github.com/apache/ignite-3/pull/2764#discussion_r1376264457


##########
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/exec/mapping/QuerySplitter.java:
##########
@@ -45,18 +48,26 @@
 public class QuerySplitter extends IgniteRelShuttle {
     private final Deque<FragmentProto> stack = new LinkedList<>();
 
+    private final RelOptCluster cluster;
+    private final IdGenerator idGenerator;
+
     private FragmentProto curr;
 
     private boolean correlated = false;
 
+    public QuerySplitter(IdGenerator idGenerator, RelOptCluster cluster) {
+        this.idGenerator = idGenerator;
+        this.cluster = cluster;
+    }
+
     /**
      * Go.
      * TODO Documentation https://issues.apache.org/jira/browse/IGNITE-15859

Review Comment:
   could you fix javadoc here?



-- 
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]

Reply via email to