Skip to content

Commit e0c4132

Browse files
ES|QL: disable SAMPLE generative tests and unmute (#135687)
Disabling generative tests for SAMPLE, that are failing due to #135336 And unmuting generative tests Fixes: #134407
1 parent 9f79f68 commit e0c4132

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
@@ -588,9 +588,6 @@ tests:
588588
- class: org.elasticsearch.xpack.esql.qa.single_node.EsqlSpecIT
589589
method: test {csv-spec:spatial_shapes.ConvertCartesianShapeFromStringParseError}
590590
issue: https://github.com/elastic/elasticsearch/issues/135455
591-
- class: org.elasticsearch.xpack.esql.qa.multi_node.GenerativeIT
592-
method: test
593-
issue: https://github.com/elastic/elasticsearch/issues/134407
594591
- class: org.elasticsearch.cluster.routing.allocation.decider.RestoreInProgressAllocationDeciderTests
595592
method: testCanAllocatePrimaryExistingInRestoreInProgress
596593
issue: https://github.com/elastic/elasticsearch/issues/135566
@@ -603,9 +600,6 @@ tests:
603600
- class: org.elasticsearch.xpack.esql.heap_attack.HeapAttackIT
604601
method: testAggTooManyMvLongs
605602
issue: https://github.com/elastic/elasticsearch/issues/135585
606-
- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeIT
607-
method: test
608-
issue: https://github.com/elastic/elasticsearch/issues/134407
609603

610604
# Examples:
611605
#

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
@@ -21,7 +21,6 @@
2121
import org.elasticsearch.xpack.esql.generator.command.pipe.LookupJoinGenerator;
2222
import org.elasticsearch.xpack.esql.generator.command.pipe.MvExpandGenerator;
2323
import org.elasticsearch.xpack.esql.generator.command.pipe.RenameGenerator;
24-
import org.elasticsearch.xpack.esql.generator.command.pipe.SampleGenerator;
2524
import org.elasticsearch.xpack.esql.generator.command.pipe.SortGenerator;
2625
import org.elasticsearch.xpack.esql.generator.command.pipe.StatsGenerator;
2726
import org.elasticsearch.xpack.esql.generator.command.pipe.TimeSeriesStatsGenerator;
@@ -72,7 +71,8 @@ public class EsqlQueryGenerator {
7271
LookupJoinGenerator.INSTANCE,
7372
MvExpandGenerator.INSTANCE,
7473
RenameGenerator.INSTANCE,
75-
SampleGenerator.INSTANCE,
74+
// awaits fix for https://github.com/elastic/elasticsearch/issues/135336
75+
// SampleGenerator.INSTANCE,
7676
SortGenerator.INSTANCE,
7777
StatsGenerator.INSTANCE,
7878
WhereGenerator.INSTANCE

0 commit comments

Comments
 (0)