@@ -500,11 +500,12 @@ required_capability: metadata_score
500
500
from books metadata _score
501
501
| where match_phrase(title, "J. R. R. Tolkien")
502
502
| keep book_no, title, author, _score
503
+ | sort _score desc
503
504
;
504
505
505
506
book_no:keyword | title:text | author:text | _score:double
506
- 5335 | Letters of J R R Tolkien | J.R.R. Tolkien | 9.017186164855957
507
- 2130 | The J. R. R. Tolkien Audio Collection | [Christopher Tolkien, John Ronald Reuel Tolkien] | 8.412636756896973
507
+ 5335 | Letters of J R R Tolkien | J.R.R. Tolkien | 9.017186164855957
508
+ 2130 | The J. R. R. Tolkien Audio Collection | [Christopher Tolkien, John Ronald Reuel Tolkien] | 8.412636756896973
508
509
;
509
510
510
511
testMatchPhraseWithScoreBoost
@@ -513,9 +514,10 @@ required_capability: match_phrase_function
513
514
from books metadata _score
514
515
| where match_phrase(title, "J. R. R. Tolkien", {"boost": 5})
515
516
| keep book_no, title, author, _score
517
+ | sort _score desc
516
518
;
517
519
518
520
book_no:keyword | title:text | author:text | _score:double
519
- 5335 | Letters of J R R Tolkien | J.R.R. Tolkien | 45.0859260559082
520
- 2130 | The J. R. R. Tolkien Audio Collection | [Christopher Tolkien, John Ronald Reuel Tolkien] | 42.06318283081055
521
+ 5335 | Letters of J R R Tolkien | J.R.R. Tolkien | 45.0859260559082
522
+ 2130 | The J. R. R. Tolkien Audio Collection | [Christopher Tolkien, John Ronald Reuel Tolkien] | 42.06318283081055
521
523
;
0 commit comments