Skip to content

Commit 67bd15b

Browse files
luigidellaquilancordon
authored andcommitted
ES|QL: Fix generative tests (elastic#138478)
Adding an exclusion for failures due to large sub-plans (not supported) Fixes: elastic#138454
1 parent cbde381 commit 67bd15b

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -432,9 +432,6 @@ tests:
432432
- class: org.elasticsearch.test.rest.yaml.CcsCommonYamlTestSuiteIT
433433
method: test {p0=search/160_exists_query/Test exists query on mapped byte field with no doc values}
434434
issue: https://github.com/elastic/elasticsearch/issues/138452
435-
- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeIT
436-
method: test
437-
issue: https://github.com/elastic/elasticsearch/issues/138454
438435
- class: org.elasticsearch.test.rest.yaml.RcsCcsCommonYamlTestSuiteIT
439436
method: test {p0=search/160_exists_query/Test exists query on geo_point field in empty index}
440437
issue: https://github.com/elastic/elasticsearch/issues/138461

x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/generative/GenerativeRestTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ public abstract class GenerativeRestTest extends ESRestTestCase implements Query
5959
"The field names are too complex to process", // field_caps problem
6060
"must be \\[any type except counter types\\]", // TODO refine the generation of count()
6161
"INLINE STATS cannot be used after an explicit or implicit LIMIT command",
62+
"sub-plan execution results too large", // INLINE STATS limitations
6263

6364
// Awaiting fixes for query failure
6465
"Unknown column \\[<all-fields-projected>\\]", // https://github.com/elastic/elasticsearch/issues/121741,

0 commit comments

Comments
 (0)