|
11 | 11 | import com.carrotsearch.randomizedtesting.annotations.ParametersFactory; |
12 | 12 |
|
13 | 13 | import org.apache.lucene.util.BytesRef; |
14 | | -import org.elasticsearch.common.geo.GeoPoint; |
15 | 14 | import org.elasticsearch.geometry.Point; |
16 | 15 | import org.elasticsearch.xpack.esql.core.expression.Expression; |
17 | 16 | import org.elasticsearch.xpack.esql.core.tree.Source; |
@@ -55,12 +54,8 @@ public static Iterable<Object[]> parameters() { |
55 | 54 | testCaseSuppliers.addAll(doubleTestCase(5.0, 10.0, 10.0, 0.0, 0.5, "linear", 0.75)); |
56 | 55 |
|
57 | 56 | // GeoPoint |
58 | | - testCaseSuppliers.addAll( |
59 | | - geoPointTestCase("POINT (1 1)", "POINT (1 1)", "200km", "0km", 0.5, "linear", 1.0) |
60 | | - ); |
61 | | - testCaseSuppliers.addAll( |
62 | | - geoPointOffsetKeywordTestCase("POINT (1 1)", "POINT (1 1)", "200km", "0km", 0.5, "linear", 1.0) |
63 | | - ); |
| 57 | + testCaseSuppliers.addAll(geoPointTestCase("POINT (1 1)", "POINT (1 1)", "200km", "0km", 0.5, "linear", 1.0)); |
| 58 | + testCaseSuppliers.addAll(geoPointOffsetKeywordTestCase("POINT (1 1)", "POINT (1 1)", "200km", "0km", 0.5, "linear", 1.0)); |
64 | 59 |
|
65 | 60 | // CartesianPoint |
66 | 61 | testCaseSuppliers.addAll( |
|
0 commit comments