Skip to content

Commit 1e347d5

Browse files
authored
Fix testInvalidJoinPatterns (#129611)
1 parent f56c6f1 commit 1e347d5

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -571,9 +571,6 @@ tests:
571571
- class: org.elasticsearch.search.query.VectorIT
572572
method: testFilteredQueryStrategy
573573
issue: https://github.com/elastic/elasticsearch/issues/129517
574-
- class: org.elasticsearch.xpack.esql.parser.StatementParserTests
575-
method: testInvalidJoinPatterns
576-
issue: https://github.com/elastic/elasticsearch/issues/129598
577574
- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeIT
578575
method: test
579576
issue: https://github.com/elastic/elasticsearch/issues/129453

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3204,7 +3204,7 @@ public void testInvalidJoinPatterns() {
32043204
{
32053205
var fromPatterns = randomIndexPattern();
32063206
// Generate a syntactically invalid (partial quoted) pattern.
3207-
var joinPattern = randomIdentifier() + ":" + quote(randomIndexPatterns(without(CROSS_CLUSTER)));
3207+
var joinPattern = randomIdentifier() + ":" + quote(randomIndexPattern(without(CROSS_CLUSTER)));
32083208
expectError(
32093209
"FROM " + fromPatterns + " | LOOKUP JOIN " + joinPattern + " ON " + randomIdentifier(),
32103210
// Since the from pattern is partially quoted, we get an error at the beginning of the partially quoted

0 commit comments

Comments
 (0)