File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -7812,14 +7812,10 @@ public void testEqualsPushdownToDelegate() {
78127812 }
78137813
78147814 public void testEqualsPushdownToDelegateTooBig () {
7815- var optimized = optimizedPlan (
7816- physicalPlan (
7817- """
7818- FROM test
7819- | WHERE job == "too_long"
7820- """ , testDataLimitedRaw
7821- ), SEARCH_STATS_SHORT_DELEGATES
7822- );
7815+ var optimized = optimizedPlan (physicalPlan ("""
7816+ FROM test
7817+ | WHERE job == "too_long"
7818+ """ , testDataLimitedRaw ), SEARCH_STATS_SHORT_DELEGATES );
78237819 var limit = as (optimized , LimitExec .class );
78247820 var exchange = as (limit .child (), ExchangeExec .class );
78257821 var project = as (exchange .child (), ProjectExec .class );
You can’t perform that action at this time.
0 commit comments