Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
* [`MATCH`](../../functions-operators/search-functions.md#esql-match)
* [`MATCH_PHRASE`](../../functions-operators/search-functions.md#esql-match_phrase)
* [`QSTR`](../../functions-operators/search-functions.md#esql-qstr)
* [`SCORE`](../../functions-operators/search-functions.md#esql-score)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

let's add the preview label here since it's tech preview.
it would be inline with what we have in the FunctionInfo already:

Copy link
Contributor Author

@tteofili tteofili Aug 21, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need to re-run the ScoreTests to regenerate the docs files?

I re-run them but there're no change made to the docs for that

% * [preview] [`TERM`](../../functions-operators/search-functions.md#esql-term)
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ our [hands-on tutorial](docs-content://solutions/search/esql-search-tutorial.md)
For a high-level overview of search functionalities in {{esql}}, and to learn about relevance scoring, refer to [{{esql}} for search](docs-content://solutions/search/esql-for-search.md#esql-for-search-scoring).
:::

{{esql}} provides a set of functions for performing searching on text fields.
{{esql}} provides a set of functions for performing searching on text fields.

Use these functions
for [full-text search](docs-content://solutions/search/full-text.md)
Expand Down Expand Up @@ -48,6 +48,10 @@ for information on the limitations of full text search.
:::{include} ../_snippets/functions/layout/qstr.md
:::

:::{include} ../_snippets/functions/layout/score.md
:::


% TERM is currently a hidden feature
% To make it visible again, uncomment this and the line in
lists/search-functions.md
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1126,7 +1126,7 @@ public enum Cap {
/**
* score function
*/
SCORE_FUNCTION(Build.current().isSnapshot()),
SCORE_FUNCTION,

/**
* Support for the SAMPLE command
Expand Down
Loading