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 b9360a4 commit f64199bCopy full SHA for f64199b
x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/Driver.java
@@ -267,7 +267,7 @@ private IsBlockedResult runSingleLoopIteration() {
267
268
if (op.isFinished() == false && nextOp.needsInput()) {
269
driverContext.checkForEarlyTermination();
270
- assert nextOp.isFinished() == false || nextOp instanceof ExchangeSinkOperator
+ assert nextOp.isFinished() == false || nextOp instanceof ExchangeSinkOperator || nextOp instanceof LimitOperator
271
: "next operator should not be finished yet: " + nextOp;
272
Page page = op.getOutput();
273
if (page == null) {
0 commit comments