Skip to content

Commit 13ccda7

Browse files
committed
First pass at CSV specs
1 parent baee81b commit 13ccda7

File tree

10 files changed

+436
-20
lines changed

10 files changed

+436
-20
lines changed

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

Lines changed: 26 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: 42 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: 16 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: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,45 @@ 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+
:::{include} ../_snippets/functions/layout/match_phrase.md
40+
:::
41+
3142
:::{include} ../_snippets/functions/layout/qstr.md
3243
:::
3344

3445
% TERM is currently a hidden feature
35-
% To make it visible again, uncomment this and the line in lists/search-functions.md
46+
% To make it visible again, uncomment this and the line in
47+
lists/search-functions.md
3648
% :::{include} ../_snippets/functions/layout/term.md
3749
% :::
3850

0 commit comments

Comments
 (0)