diff --git a/muted-tests.yml b/muted-tests.yml index 836b3a5fab800..e94e08ed121c6 100644 --- a/muted-tests.yml +++ b/muted-tests.yml @@ -561,12 +561,6 @@ tests: - class: org.elasticsearch.xpack.esql.ccq.AllSupportedFieldsIT method: testFetchDenseVector {pref=null mode=time_series} issue: https://github.com/elastic/elasticsearch/issues/135762 -- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeIT - method: test - issue: https://github.com/elastic/elasticsearch/issues/135787 -- class: org.elasticsearch.xpack.esql.qa.multi_node.GenerativeIT - method: test - issue: https://github.com/elastic/elasticsearch/issues/135787 - class: org.elasticsearch.xpack.logsdb.qa.BulkDynamicMappingChallengeRestIT method: testMatchAllQuery issue: https://github.com/elastic/elasticsearch/issues/135820 diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/generator/EsqlQueryGenerator.java b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/generator/EsqlQueryGenerator.java index 8b3d12772b53f..95867cc645e30 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/generator/EsqlQueryGenerator.java +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/generator/EsqlQueryGenerator.java @@ -17,7 +17,6 @@ import org.elasticsearch.xpack.esql.generator.command.pipe.EvalGenerator; import org.elasticsearch.xpack.esql.generator.command.pipe.ForkGenerator; import org.elasticsearch.xpack.esql.generator.command.pipe.GrokGenerator; -import org.elasticsearch.xpack.esql.generator.command.pipe.InlineStatsGenerator; import org.elasticsearch.xpack.esql.generator.command.pipe.KeepGenerator; import org.elasticsearch.xpack.esql.generator.command.pipe.LimitGenerator; import org.elasticsearch.xpack.esql.generator.command.pipe.LookupJoinGenerator; @@ -70,7 +69,8 @@ public class EsqlQueryGenerator { ForkGenerator.INSTANCE, GrokGenerator.INSTANCE, KeepGenerator.INSTANCE, - InlineStatsGenerator.INSTANCE, + // awaits fix for https://github.com/elastic/elasticsearch/issues/135679 + // InlineStatsGenerator.INSTANCE, LimitGenerator.INSTANCE, LookupJoinGenerator.INSTANCE, MvExpandGenerator.INSTANCE,