File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -571,9 +571,6 @@ tests:
571
571
- class : org.elasticsearch.search.query.VectorIT
572
572
method : testFilteredQueryStrategy
573
573
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
577
574
- class : org.elasticsearch.xpack.esql.qa.single_node.GenerativeIT
578
575
method : test
579
576
issue : https://github.com/elastic/elasticsearch/issues/129453
Original file line number Diff line number Diff line change @@ -3204,7 +3204,7 @@ public void testInvalidJoinPatterns() {
3204
3204
{
3205
3205
var fromPatterns = randomIndexPattern ();
3206
3206
// 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 )));
3208
3208
expectError (
3209
3209
"FROM " + fromPatterns + " | LOOKUP JOIN " + joinPattern + " ON " + randomIdentifier (),
3210
3210
// Since the from pattern is partially quoted, we get an error at the beginning of the partially quoted
You can’t perform that action at this time.
0 commit comments