Jackie-Jiang commented on code in PR #10881:
URL: https://github.com/apache/pinot/pull/10881#discussion_r1224895260
##########
pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/plan/pipeline/PipelineBreakerOperator.java:
##########
@@ -79,14 +79,14 @@ protected TransferableBlock getNextBlock() {
Map.Entry<Integer, Operator<TransferableBlock>> worker =
_workerEntries.remove();
TransferableBlock block = worker.getValue().nextBlock();
- // Release the mailbox when the block is end-of-stream
- if (block != null && block.isSuccessfulEndOfStreamBlock()) {
+ // Release the mailbox worker when the block is end-of-stream
+ if (block != null && !block.isNoOpBlock() &&
block.isSuccessfulEndOfStreamBlock()) {
Review Comment:
```suggestion
if (block != null && block.isSuccessfulEndOfStreamBlock()) {
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]