bziobrowski commented on code in PR #15245: URL: https://github.com/apache/pinot/pull/15245#discussion_r1992028253
########## pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/plan/server/ServerPlanRequestVisitor.java: ########## @@ -156,15 +156,15 @@ public Void visitJoin(JoinNode node, ServerPlanRequestContext context) { if (visit(left, context)) { PipelineBreakerResult pipelineBreakerResult = context.getPipelineBreakerResult(); int resultMapId = pipelineBreakerResult.getNodeIdMap().get(right); - List<TransferableBlock> transferableBlocks = - pipelineBreakerResult.getResultMap().getOrDefault(resultMapId, Collections.emptyList()); + List<MseBlock> blocks = pipelineBreakerResult.getResultMap().getOrDefault(resultMapId, Collections.emptyList()); List<Object[]> resultDataContainer = new ArrayList<>(); DataSchema dataSchema = right.getDataSchema(); Review Comment: Could this loop receive column-based block ? -- 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