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 2a9fec2 commit b7dd7d4Copy full SHA for b7dd7d4
x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Limit.java
@@ -70,7 +70,8 @@ public void writeTo(StreamOutput out) throws IOException {
70
out.writeNamedWriteable(limit());
71
out.writeNamedWriteable(child());
72
// Let's make sure we notice during tests if we ever serialize a duplicated Limit.
73
- assert duplicated == false;
+ // FIXME: verify that this condition is correct and fix the comments
74
+ assert implied || duplicated == false;
75
}
76
77
@Override
0 commit comments