Skip to content

Commit 3b5b3e1

Browse files
committed
Revert package imports
1 parent 98f2e61 commit 3b5b3e1

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/ReplaceStatsFilteredAggWithEvalTests.java

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@
1616
import org.elasticsearch.xpack.esql.expression.function.aggregate.Count;
1717
import org.elasticsearch.xpack.esql.expression.predicate.operator.arithmetic.Add;
1818
import org.elasticsearch.xpack.esql.optimizer.AbstractLogicalPlanOptimizerTests;
19-
import org.elasticsearch.xpack.esql.plan.logical.*;
19+
import org.elasticsearch.xpack.esql.plan.logical.Aggregate;
20+
import org.elasticsearch.xpack.esql.plan.logical.EsRelation;
21+
import org.elasticsearch.xpack.esql.plan.logical.Eval;
22+
import org.elasticsearch.xpack.esql.plan.logical.Limit;
23+
import org.elasticsearch.xpack.esql.plan.logical.Project;
24+
import org.elasticsearch.xpack.esql.plan.logical.TopN;
2025
import org.elasticsearch.xpack.esql.plan.logical.join.InlineJoin;
2126
import org.elasticsearch.xpack.esql.plan.logical.join.StubRelation;
2227
import org.elasticsearch.xpack.esql.plan.logical.local.EsqlProject;
@@ -28,7 +33,11 @@
2833
import static org.elasticsearch.xpack.esql.core.type.DataType.INTEGER;
2934
import static org.elasticsearch.xpack.esql.core.type.DataType.LONG;
3035
import static org.elasticsearch.xpack.esql.optimizer.LogicalPlanOptimizerTests.releaseBuildForInlinestats;
31-
import static org.hamcrest.Matchers.*;
36+
import static org.hamcrest.Matchers.contains;
37+
import static org.hamcrest.Matchers.containsString;
38+
import static org.hamcrest.Matchers.is;
39+
import static org.hamcrest.Matchers.nullValue;
40+
import static org.hamcrest.Matchers.startsWith;
3241

3342
public class ReplaceStatsFilteredAggWithEvalTests extends AbstractLogicalPlanOptimizerTests {
3443

0 commit comments

Comments
 (0)