We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 231d051 commit 2c85c37Copy full SHA for 2c85c37
x-pack/plugin/eql/src/test/java/org/elasticsearch/xpack/eql/planner/QueryTranslatorTests.java
@@ -23,12 +23,6 @@ public void testLikeOptimization() throws Exception {
23
assertThat(asQuery(plan), containsString("\"exists\":{\"field\":\"process_name\""));
24
}
25
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
-
32
private static String asQuery(PhysicalPlan plan) {
33
return plan.toString().replaceAll("\\s+", "");
34
0 commit comments