Skip to content

Commit c755cc0

Browse files
authored
Merge branch 'main' into markjhoy/default_token_pruning_sparse_vector
2 parents a43d2e3 + 234e7ed commit c755cc0

File tree

125 files changed

+4990
-517
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+4990
-517
lines changed

docs/changelog/127661.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 127661
2+
summary: Add MATCH_PHRASE
3+
area: ES|QL
4+
type: enhancement
5+
issues: []

docs/changelog/128538.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 128538
2+
summary: "Added Mistral Chat Completion support to the Inference Plugin"
3+
area: Machine Learning
4+
type: enhancement
5+
issues: []

docs/reference/query-languages/esql/_snippets/functions/description/match_phrase.md

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/_snippets/functions/examples/match_phrase.md

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/_snippets/functions/functionNamedParams/match_phrase.md

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/_snippets/functions/layout/match_phrase.md

Lines changed: 36 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/_snippets/functions/parameters/match_phrase.md

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/_snippets/functions/types/match_phrase.md

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
* [preview] [`KQL`](../../functions-operators/search-functions.md#esql-kql)
22
* [preview] [`MATCH`](../../functions-operators/search-functions.md#esql-match)
3+
% * [preview] [
4+
`MATCH_PHRASE`](../../functions-operators/search-functions.md#esql-match-phrase)
35
* [preview] [`QSTR`](../../functions-operators/search-functions.md#esql-qstr)
4-
% * [preview] [`TERM`](../../functions-operators/search-functions.md#esql-term)
6+
% * [preview] [
7+
`TERM`](../../functions-operators/search-functions.md#esql-term)

docs/reference/query-languages/esql/functions-operators/search-functions.md

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,46 @@ mapped_pages:
66

77
# {{esql}} Search functions [esql-search-functions]
88

9-
Use these functions for [full-text search](docs-content://solutions/search/full-text.md) and [semantic search](docs-content://solutions/search/semantic-search/semantic-search-semantic-text.md).
9+
Use these functions
10+
for [full-text search](docs-content://solutions/search/full-text.md)
11+
and [semantic search](docs-content://solutions/search/semantic-search/semantic-search-semantic-text.md).
1012

11-
Get started with {{esql}} for search use cases with our [hands-on tutorial](docs-content://solutions/search/esql-search-tutorial.md).
13+
Get started with {{esql}} for search use cases with
14+
our [hands-on tutorial](docs-content://solutions/search/esql-search-tutorial.md).
1215

13-
Full text functions can be used to match [multivalued fields](/reference/query-languages/esql/esql-multivalued-fields.md). A multivalued field that contains a value that matches a full text query is considered to match the query.
16+
Full text functions can be used to
17+
match [multivalued fields](/reference/query-languages/esql/esql-multivalued-fields.md).
18+
A multivalued field that contains a value that matches a full text query is
19+
considered to match the query.
1420

15-
Full text functions are significantly more performant for text search use cases on large data sets than using pattern matching or regular expressions with `LIKE` or `RLIKE`
21+
Full text functions are significantly more performant for text search use cases
22+
on large data sets than using pattern matching or regular expressions with
23+
`LIKE` or `RLIKE`
1624

17-
See [full text search limitations](/reference/query-languages/esql/limitations.md#esql-limitations-full-text-search) for information on the limitations of full text search.
25+
See [full text search limitations](/reference/query-languages/esql/limitations.md#esql-limitations-full-text-search)
26+
for information on the limitations of full text search.
1827

1928
{{esql}} supports these full-text search functions:
2029

2130
:::{include} ../_snippets/lists/search-functions.md
2231
:::
2332

24-
2533
:::{include} ../_snippets/functions/layout/kql.md
2634
:::
2735

2836
:::{include} ../_snippets/functions/layout/match.md
2937
:::
3038

39+
% MATCH_PHRASE is currently hidden
40+
% :::{include} ../_snippets/functions/layout/match_phrase.md
41+
% :::
42+
3143
:::{include} ../_snippets/functions/layout/qstr.md
3244
:::
3345

3446
% TERM is currently a hidden feature
35-
% To make it visible again, uncomment this and the line in lists/search-functions.md
47+
% To make it visible again, uncomment this and the line in
48+
lists/search-functions.md
3649
% :::{include} ../_snippets/functions/layout/term.md
3750
% :::
3851

0 commit comments

Comments
 (0)