Skip to content

Commit fbf9f0d

Browse files
committed
Fix testInvalidJoinPatterns
1 parent 9e40bb3 commit fbf9f0d

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

578575
# Examples:
579576
#

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
@@ -3205,7 +3205,7 @@ public void testInvalidJoinPatterns() {
32053205
{
32063206
var fromPatterns = randomIndexPattern();
32073207
// Generate a syntactically invalid (partial quoted) pattern.
3208-
var joinPattern = randomIdentifier() + ":" + quote(randomIndexPatterns(without(CROSS_CLUSTER)));
3208+
var joinPattern = randomIdentifier() + ":" + quote(randomIndexPatterns(without(CROSS_CLUSTER), without(DATE_MATH)));
32093209
expectError(
32103210
"FROM " + fromPatterns + " | LOOKUP JOIN " + joinPattern + " ON " + randomIdentifier(),
32113211
// Since the from pattern is partially quoted, we get an error at the beginning of the partially quoted

0 commit comments

Comments
 (0)