gortiz commented on code in PR #14495:
URL: https://github.com/apache/pinot/pull/14495#discussion_r1851573201


##########
pinot-query-planner/src/test/java/org/apache/pinot/query/planner/logical/StagesTestBase.java:
##########
@@ -229,4 +260,127 @@ default P build(int stageId) {
       return build(stageId, null, null);
     }
   }
+
+  public class Spool {
+    private final int _senderStageId;
+    private final Set<SpoolReceiverBuilder> _receiverBuilder = 
Collections.newSetFromMap(new IdentityHashMap<>());
+    private MailboxSendNode _sender;
+    private final SimpleChildBuilder<? extends PlanNode> _childBuilder;
+
+    public Spool(int senderStageId, SimpleChildBuilder<? extends PlanNode> 
childBuilder) {
+      _senderStageId = senderStageId;
+      _childBuilder = childBuilder;

Review Comment:
   Yes, I'm adding javadoc to make this class easier to understand



-- 
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: commits-unsubscr...@pinot.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to