We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5931f08 commit 8acf94bCopy full SHA for 8acf94b
x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/Driver.java
@@ -267,7 +267,8 @@ private IsBlockedResult runSingleLoopIteration() {
267
268
if (op.isFinished() == false && nextOp.needsInput()) {
269
driverContext.checkForEarlyTermination();
270
- assert nextOp.isFinished() == false : "next operator should not be finished yet: " + nextOp;
+ assert nextOp.isFinished() == false || nextOp instanceof ExchangeSinkOperator
271
+ : "next operator should not be finished yet: " + nextOp;
272
Page page = op.getOutput();
273
if (page == null) {
274
// No result, just move to the next iteration
0 commit comments