File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -317,9 +317,6 @@ tests:
317317- class : org.elasticsearch.reservedstate.service.FileSettingsServiceTests
318318 method : testInvalidJSON
319319 issue : https://github.com/elastic/elasticsearch/issues/116521
320- - class : org.elasticsearch.xpack.esql.optimizer.LogicalPlanOptimizerTests
321- method : testPlanSanityCheckWithBinaryPlans
322- issue : https://github.com/elastic/elasticsearch/issues/118656
323320
324321# Examples:
325322#
Original file line number Diff line number Diff line change @@ -4911,8 +4911,7 @@ public void testPlanSanityCheckWithBinaryPlans() throws Exception {
49114911 """ );
49124912
49134913 var project = as (plan , Project .class );
4914- var limit = as (project .child (), Limit .class );
4915- var join = as (limit .child (), Join .class );
4914+ var join = as (project .child (), Join .class );
49164915
49174916 var joinWithInvalidLeftPlan = join .replaceChildren (join .right (), join .right ());
49184917 IllegalStateException e = expectThrows (IllegalStateException .class , () -> logicalOptimizer .optimize (joinWithInvalidLeftPlan ));
You can’t perform that action at this time.
0 commit comments