|
@@ -18,12 +18,6 @@ import org.elasticsearch.xpack.esql.analysis.Analyzer;
|
|
|
import org.elasticsearch.xpack.esql.analysis.AnalyzerContext;
|
|
|
import org.elasticsearch.xpack.esql.analysis.AnalyzerTestUtils;
|
|
|
import org.elasticsearch.xpack.esql.analysis.EnrichResolution;
|
|
|
-import org.elasticsearch.xpack.esql.evaluator.predicate.operator.comparison.Equals;
|
|
|
-import org.elasticsearch.xpack.esql.evaluator.predicate.operator.comparison.GreaterThan;
|
|
|
-import org.elasticsearch.xpack.esql.evaluator.predicate.operator.comparison.GreaterThanOrEqual;
|
|
|
-import org.elasticsearch.xpack.esql.evaluator.predicate.operator.comparison.LessThan;
|
|
|
-import org.elasticsearch.xpack.esql.evaluator.predicate.operator.comparison.LessThanOrEqual;
|
|
|
-import org.elasticsearch.xpack.esql.evaluator.predicate.operator.comparison.NotEquals;
|
|
|
import org.elasticsearch.xpack.esql.expression.Order;
|
|
|
import org.elasticsearch.xpack.esql.expression.function.EsqlFunctionRegistry;
|
|
|
import org.elasticsearch.xpack.esql.expression.function.aggregate.Avg;
|
|
@@ -69,7 +63,13 @@ import org.elasticsearch.xpack.esql.expression.predicate.operator.arithmetic.Mod
|
|
|
import org.elasticsearch.xpack.esql.expression.predicate.operator.arithmetic.Mul;
|
|
|
import org.elasticsearch.xpack.esql.expression.predicate.operator.arithmetic.Neg;
|
|
|
import org.elasticsearch.xpack.esql.expression.predicate.operator.arithmetic.Sub;
|
|
|
+import org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.Equals;
|
|
|
+import org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.GreaterThan;
|
|
|
+import org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.GreaterThanOrEqual;
|
|
|
import org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.In;
|
|
|
+import org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.LessThan;
|
|
|
+import org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.LessThanOrEqual;
|
|
|
+import org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.NotEquals;
|
|
|
import org.elasticsearch.xpack.esql.parser.EsqlParser;
|
|
|
import org.elasticsearch.xpack.esql.plan.logical.Aggregate;
|
|
|
import org.elasticsearch.xpack.esql.plan.logical.Dissect;
|
|
@@ -140,7 +140,6 @@ import static org.elasticsearch.xpack.esql.analysis.Analyzer.NO_FIELDS;
|
|
|
import static org.elasticsearch.xpack.esql.type.EsqlDataTypes.GEO_POINT;
|
|
|
import static org.elasticsearch.xpack.esql.type.EsqlDataTypes.GEO_SHAPE;
|
|
|
import static org.elasticsearch.xpack.ql.TestUtils.getFieldAttribute;
|
|
|
-import static org.elasticsearch.xpack.ql.TestUtils.relation;
|
|
|
import static org.elasticsearch.xpack.ql.expression.Literal.FALSE;
|
|
|
import static org.elasticsearch.xpack.ql.expression.Literal.NULL;
|
|
|
import static org.elasticsearch.xpack.ql.expression.Literal.TRUE;
|