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.
2 parents fff5b1f + 1fec8c0 commit 2984d2eCopy full SHA for 2984d2e
x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java
@@ -4911,8 +4911,7 @@ public void testPlanSanityCheckWithBinaryPlans() throws Exception {
4911
""");
4912
4913
var project = as(plan, Project.class);
4914
- var limit = as(project.child(), Limit.class);
4915
- var join = as(limit.child(), Join.class);
+ var join = as(project.child(), Join.class);
4916
4917
var joinWithInvalidLeftPlan = join.replaceChildren(join.right(), join.right());
4918
IllegalStateException e = expectThrows(IllegalStateException.class, () -> logicalOptimizer.optimize(joinWithInvalidLeftPlan));
0 commit comments