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 @@ -7811,14 +7811,10 @@ public void testEqualsPushdownToDelegate() {
78117811 }
78127812
78137813 public void testEqualsPushdownToDelegateTooBig () {
7814- var optimized = optimizedPlan (
7815- physicalPlan (
7816- """
7817- FROM test
7818- | WHERE job == "too_long"
7819- """ , testDataLimitedRaw
7820- ), SEARCH_STATS_SHORT_DELEGATES
7821- );
7814+ var optimized = optimizedPlan (physicalPlan ("""
7815+ FROM test
7816+ | WHERE job == "too_long"
7817+ """ , testDataLimitedRaw ), SEARCH_STATS_SHORT_DELEGATES );
78227818 var limit = as (optimized , LimitExec .class );
78237819 var exchange = as (limit .child (), ExchangeExec .class );
78247820 var project = as (exchange .child (), ProjectExec .class );
You can’t perform that action at this time.
0 commit comments