Skip to content

Commit a67b1fd

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 19a5a4f commit a67b1fd

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)