Skip to content

Commit 75c773c

Browse files
committed
[ESQL] Fix match phrase tests not being deterministic
1 parent 8555c16 commit 75c773c

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
@@ -583,9 +583,6 @@ tests:
583583
- class: org.elasticsearch.test.apmintegration.TracesApmIT
584584
method: testApmIntegration
585585
issue: https://github.com/elastic/elasticsearch/issues/129651
586-
- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecIT
587-
method: test {scoring.TestMatchPhraseWithScoreBoost ASYNC}
588-
issue: https://github.com/elastic/elasticsearch/issues/129676
589586

590587
# Examples:
591588
#

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)