From 8295479ae67b1c3fc26362158229853660a51c63 Mon Sep 17 00:00:00 2001 From: Andrei Stefan Date: Thu, 14 Aug 2025 11:22:28 +0300 Subject: [PATCH] Method not needed anymore --- .../xpack/eql/planner/QueryTranslatorTests.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/x-pack/plugin/eql/src/test/java/org/elasticsearch/xpack/eql/planner/QueryTranslatorTests.java b/x-pack/plugin/eql/src/test/java/org/elasticsearch/xpack/eql/planner/QueryTranslatorTests.java index 33e29953d9dfb..521e0444f044a 100644 --- a/x-pack/plugin/eql/src/test/java/org/elasticsearch/xpack/eql/planner/QueryTranslatorTests.java +++ b/x-pack/plugin/eql/src/test/java/org/elasticsearch/xpack/eql/planner/QueryTranslatorTests.java @@ -23,12 +23,6 @@ public void testLikeOptimization() throws Exception { assertThat(asQuery(plan), containsString("\"exists\":{\"field\":\"process_name\"")); } - @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/63263") - public void testMatchOptimization() throws Exception { - PhysicalPlan plan = plan("process where match(process_name, \".*\") "); - assertThat(asQuery(plan), containsString("\"exists\":{\"field\":\"process_name\"")); - } - private static String asQuery(PhysicalPlan plan) { return plan.toString().replaceAll("\\s+", ""); }