Skip to content

Commit 674cfa1

Browse files
authored
Ensure multivalues are sorted (#119457)
1 parent 1714247 commit 674cfa1

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

muted-tests.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -241,9 +241,6 @@ tests:
241241
- class: org.elasticsearch.xpack.test.rest.XPackRestIT
242242
method: test {p0=ml/data_frame_analytics_cat_apis/Test cat data frame analytics all jobs with header}
243243
issue: https://github.com/elastic/elasticsearch/issues/119332
244-
- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecIT
245-
method: test {lookup-join.MvJoinKeyOnTheDataNode ASYNC}
246-
issue: https://github.com/elastic/elasticsearch/issues/119179
247244
- class: org.elasticsearch.smoketest.SmokeTestMultiNodeClientYamlTestSuiteIT
248245
issue: https://github.com/elastic/elasticsearch/issues/119191
249246
- class: org.elasticsearch.xpack.logsdb.qa.LogsDbVersusLogsDbReindexedIntoStandardModeChallengeRestIT
@@ -252,9 +249,6 @@ tests:
252249
- class: org.elasticsearch.xpack.logsdb.qa.LogsDbVersusLogsDbReindexedIntoStandardModeChallengeRestIT
253250
method: testMatchAllQuery
254251
issue: https://github.com/elastic/elasticsearch/issues/119432
255-
- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecIT
256-
method: test {lookup-join.MvJoinKeyOnTheDataNode SYNC}
257-
issue: https://github.com/elastic/elasticsearch/issues/119446
258252
- class: org.elasticsearch.xpack.logsdb.qa.LogsDbVersusLogsDbReindexedIntoStandardModeChallengeRestIT
259253
method: testTermsQuery
260254
issue: https://github.com/elastic/elasticsearch/issues/119486

x-pack/plugin/esql/qa/testFixtures/src/main/resources/lookup-join.csv-spec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,7 @@ FROM employees
419419
| EVAL language_code = emp_no % 10
420420
| LOOKUP JOIN languages_lookup_non_unique_key ON language_code
421421
| SORT emp_no
422+
| EVAL language_name = MV_SORT(language_name)
422423
| KEEP emp_no, language_code, language_name
423424
;
424425

0 commit comments

Comments
 (0)