Skip to content

Commit 2c85c37

Browse files
authored
Method not needed anymore (#132912)
Closes #132894
1 parent 231d051 commit 2c85c37

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

x-pack/plugin/eql/src/test/java/org/elasticsearch/xpack/eql/planner/QueryTranslatorTests.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,6 @@ public void testLikeOptimization() throws Exception {
2323
assertThat(asQuery(plan), containsString("\"exists\":{\"field\":\"process_name\""));
2424
}
2525

26-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/63263")
27-
public void testMatchOptimization() throws Exception {
28-
PhysicalPlan plan = plan("process where match(process_name, \".*\") ");
29-
assertThat(asQuery(plan), containsString("\"exists\":{\"field\":\"process_name\""));
30-
}
31-
3226
private static String asQuery(PhysicalPlan plan) {
3327
return plan.toString().replaceAll("\\s+", "");
3428
}

0 commit comments

Comments
 (0)