Skip to content

Commit 90ec2be

Browse files
ES|QL: disable INLINE STATS generative tests (#136206)
Skipping `INLINE STATS` generative tests for now, due to #135679 Also unmuting `GenerativeIT` Fixes: #135787
1 parent 6f5f268 commit 90ec2be

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

muted-tests.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -561,12 +561,6 @@ tests:
561561
- class: org.elasticsearch.xpack.esql.ccq.AllSupportedFieldsIT
562562
method: testFetchDenseVector {pref=null mode=time_series}
563563
issue: https://github.com/elastic/elasticsearch/issues/135762
564-
- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeIT
565-
method: test
566-
issue: https://github.com/elastic/elasticsearch/issues/135787
567-
- class: org.elasticsearch.xpack.esql.qa.multi_node.GenerativeIT
568-
method: test
569-
issue: https://github.com/elastic/elasticsearch/issues/135787
570564
- class: org.elasticsearch.xpack.logsdb.qa.BulkDynamicMappingChallengeRestIT
571565
method: testMatchAllQuery
572566
issue: https://github.com/elastic/elasticsearch/issues/135820

x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/generator/EsqlQueryGenerator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
import org.elasticsearch.xpack.esql.generator.command.pipe.EvalGenerator;
1818
import org.elasticsearch.xpack.esql.generator.command.pipe.ForkGenerator;
1919
import org.elasticsearch.xpack.esql.generator.command.pipe.GrokGenerator;
20-
import org.elasticsearch.xpack.esql.generator.command.pipe.InlineStatsGenerator;
2120
import org.elasticsearch.xpack.esql.generator.command.pipe.KeepGenerator;
2221
import org.elasticsearch.xpack.esql.generator.command.pipe.LimitGenerator;
2322
import org.elasticsearch.xpack.esql.generator.command.pipe.LookupJoinGenerator;
@@ -70,7 +69,8 @@ public class EsqlQueryGenerator {
7069
ForkGenerator.INSTANCE,
7170
GrokGenerator.INSTANCE,
7271
KeepGenerator.INSTANCE,
73-
InlineStatsGenerator.INSTANCE,
72+
// awaits fix for https://github.com/elastic/elasticsearch/issues/135679
73+
// InlineStatsGenerator.INSTANCE,
7474
LimitGenerator.INSTANCE,
7575
LookupJoinGenerator.INSTANCE,
7676
MvExpandGenerator.INSTANCE,

0 commit comments

Comments
 (0)