Skip to content

Commit 2b8d9df

Browse files
authored
[ESQL] Fix match phrase tests not being deterministic (#129724)
Closes #129676
1 parent 0dba163 commit 2b8d9df

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -565,9 +565,6 @@ tests:
565565
- class: org.elasticsearch.test.apmintegration.TracesApmIT
566566
method: testApmIntegration
567567
issue: https://github.com/elastic/elasticsearch/issues/129651
568-
- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecIT
569-
method: test {scoring.TestMatchPhraseWithScoreBoost ASYNC}
570-
issue: https://github.com/elastic/elasticsearch/issues/129676
571568
- class: org.elasticsearch.search.query.RescoreKnnVectorQueryIT
572569
method: testKnnSearchRescore
573570
issue: https://github.com/elastic/elasticsearch/issues/129713

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -567,11 +567,12 @@ required_capability: metadata_score
567567
from books metadata _score
568568
| where match_phrase(title, "J. R. R. Tolkien")
569569
| keep book_no, title, author, _score
570+
| sort _score desc
570571
;
571572

572573
book_no:keyword | title:text | author:text | _score:double
573-
5335 | Letters of J R R Tolkien | J.R.R. Tolkien | 9.017186164855957
574-
2130 | The J. R. R. Tolkien Audio Collection | [Christopher Tolkien, John Ronald Reuel Tolkien] | 8.412636756896973
574+
5335 | Letters of J R R Tolkien | J.R.R. Tolkien | 9.017186164855957
575+
2130 | The J. R. R. Tolkien Audio Collection | [Christopher Tolkien, John Ronald Reuel Tolkien] | 8.412636756896973
575576
;
576577

577578
testMatchPhraseWithScoreBoost
@@ -580,9 +581,10 @@ required_capability: match_phrase_function
580581
from books metadata _score
581582
| where match_phrase(title, "J. R. R. Tolkien", {"boost": 5})
582583
| keep book_no, title, author, _score
584+
| sort _score desc
583585
;
584586

585587
book_no:keyword | title:text | author:text | _score:double
586-
5335 | Letters of J R R Tolkien | J.R.R. Tolkien | 45.0859260559082
587-
2130 | The J. R. R. Tolkien Audio Collection | [Christopher Tolkien, John Ronald Reuel Tolkien] | 42.06318283081055
588+
5335 | Letters of J R R Tolkien | J.R.R. Tolkien | 45.0859260559082
589+
2130 | The J. R. R. Tolkien Audio Collection | [Christopher Tolkien, John Ronald Reuel Tolkien] | 42.06318283081055
588590
;

0 commit comments

Comments
 (0)