@@ -567,11 +567,12 @@ required_capability: metadata_score
567567from 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
572573book_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
577578testMatchPhraseWithScoreBoost
@@ -580,9 +581,10 @@ required_capability: match_phrase_function
580581from 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
585587book_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