Skip to content

Commit 04c57ea

Browse files
ES|QL: unmute GenerativeIT (#127211)
1 parent b991708 commit 04c57ea

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -429,9 +429,6 @@ tests:
429429
- class: org.elasticsearch.search.query.QueryPhaseTimeoutTests
430430
method: testBulkScorerTimeout
431431
issue: https://github.com/elastic/elasticsearch/issues/127156
432-
- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeIT
433-
method: test
434-
issue: https://github.com/elastic/elasticsearch/issues/127157
435432
- class: org.elasticsearch.packaging.test.DockerTests
436433
method: test026InstallBundledRepositoryPluginsViaConfigFile
437434
issue: https://github.com/elastic/elasticsearch/issues/127158

x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/GenerativeIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import org.junit.ClassRule;
1616

1717
/**
18-
* This test generates random queries, runs them agains the CSV test dataset and checks that they don't throw unexpected exceptions.
18+
* This test generates random queries, runs them against the CSV test dataset and checks that they don't throw unexpected exceptions.
1919
*
2020
* If muted, please:
2121
* <ul>

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public abstract class GenerativeRestTest extends ESRestTestCase {
3737
"Reference \\[.*\\] is ambiguous",
3838
"Cannot use field \\[.*\\] due to ambiguities",
3939
"cannot sort on .*",
40-
"argument of \\[count_distinct\\(.*\\)\\] must",
40+
"argument of \\[count.*\\] must",
4141
"Cannot use field \\[.*\\] with unsupported type \\[.*_range\\]",
4242
"Unbounded sort not supported yet",
4343
"The field names are too complex to process", // field_caps problem
@@ -51,6 +51,7 @@ public abstract class GenerativeRestTest extends ESRestTestCase {
5151
"Unknown column \\[<all-fields-projected>\\]", // https://github.com/elastic/elasticsearch/issues/121741,
5252
"Plan \\[ProjectExec\\[\\[<no-fields>.* optimized incorrectly due to missing references", // https://github.com/elastic/elasticsearch/issues/125866
5353
"token recognition error at: '``", // https://github.com/elastic/elasticsearch/issues/125870
54+
// https://github.com/elastic/elasticsearch/issues/127167
5455
"Unknown column \\[.*\\]", // https://github.com/elastic/elasticsearch/issues/126026
5556
"optimized incorrectly due to missing references", // https://github.com/elastic/elasticsearch/issues/116781
5657
"No matches found for pattern", // https://github.com/elastic/elasticsearch/issues/126418

0 commit comments

Comments
 (0)