Skip to content

Commit ba917cd

Browse files
elasticsearchmachinejan-elastic
authored andcommitted
[CI] Auto commit changes from spotless
1 parent 0a5085b commit ba917cd

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
@@ -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);

0 commit comments

Comments
 (0)