Skip to content

ES|QL - Make full text functions GA #128437

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
* [preview] [`KQL`](../../functions-operators/search-functions.md#esql-kql)
* [preview] [`MATCH`](../../functions-operators/search-functions.md#esql-match)
* [preview] [`QSTR`](../../functions-operators/search-functions.md#esql-qstr)
% * [preview] [`TERM`](../../functions-operators/search-functions.md#esql-term)
* [`KQL`](../../functions-operators/search-functions.md#esql-kql)
* [`MATCH`](../../functions-operators/search-functions.md#esql-match)
* [`QSTR`](../../functions-operators/search-functions.md#esql-qstr)
% * [`TERM`](../../functions-operators/search-functions.md#esql-term)

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion docs/reference/query-languages/esql/limitations.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ In addition, when [querying multiple indexes](docs-content://explore-analyze/que

## Full-text search [esql-limitations-full-text-search]

[preview] {{esql}}'s support for [full-text search](/reference/query-languages/esql/functions-operators/search-functions.md) is currently in Technical Preview.
One limitation of full-text search is that it is necessary to use the search function,
like [`MATCH`](/reference/query-languages/esql/functions-operators/search-functions.md#esql-match),
in a [`WHERE`](/reference/query-languages/esql/commands/processing-commands.md#esql-where) command directly after the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ public class Kql extends FullTextFunction {

@FunctionInfo(
returnType = "boolean",
preview = true,
description = "Performs a KQL query. Returns true if the provided KQL query string matches the row.",
examples = { @Example(file = "kql-function", tag = "kql-with-field") }
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ public class Match extends FullTextFunction implements OptionalArgument, PostAna

@FunctionInfo(
returnType = "boolean",
preview = true,
description = """
Use `MATCH` to perform a <<query-dsl-match-query,match query>> on the specified field.
Using `MATCH` is equivalent to using the `match` query in the Elasticsearch Query DSL.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ public class MatchOperator extends Match {
@FunctionInfo(
returnType = "boolean",
operator = ":",
preview = true,
description = """
Use the match operator (`:`) to perform a <<query-dsl-match-query,match query>> on the specified field.
Using `:` is equivalent to using the `match` query in the Elasticsearch Query DSL.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ public class QueryString extends FullTextFunction implements OptionalArgument {

@FunctionInfo(
returnType = "boolean",
preview = true,
description = "Performs a <<query-dsl-query-string-query,query string query>>. "
+ "Returns true if the provided query string matches the row.",
examples = {
Expand Down
Loading