Skip to content

Commit 8a7fc4d

Browse files
committed
Fix test
1 parent 0678ff4 commit 8a7fc4d

File tree

1 file changed

+0
-10
lines changed
  • x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/plugin

1 file changed

+0
-10
lines changed

x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/plugin/MatchFunctionIT.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -268,16 +268,6 @@ public void testMatchWithinEval() {
268268
assertThat(error.getMessage(), containsString("[:] operator is only supported in WHERE commands"));
269269
}
270270

271-
public void testMatchWithNonTextField() {
272-
var query = """
273-
FROM test
274-
| WHERE id:"fox"
275-
""";
276-
277-
var error = expectThrows(VerificationException.class, () -> run(query));
278-
assertThat(error.getMessage(), containsString("first argument of [id:\"fox\"] must be [string], found value [id] type [integer]"));
279-
}
280-
281271
private void createAndPopulateIndex() {
282272
var indexName = "test";
283273
var client = client().admin().indices();

0 commit comments

Comments
 (0)