Skip to content

Commit 4b47032

Browse files
committed
[DOCS][ESQL] Flip preview booleans, to GA search functions
1 parent 706e7f3 commit 4b47032

File tree

10 files changed

+5
-10
lines changed

10 files changed

+5
-10
lines changed

docs/reference/query-languages/esql/kibana/definition/functions/kql.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/kibana/definition/functions/match.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/kibana/definition/functions/match_phrase.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/kibana/definition/functions/qstr.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/kibana/definition/operators/match_operator.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/fulltext/Kql.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ public class Kql extends FullTextFunction {
3535

3636
@FunctionInfo(
3737
returnType = "boolean",
38-
preview = true,
3938
description = "Performs a KQL query. Returns true if the provided KQL query string matches the row.",
4039
examples = { @Example(file = "kql-function", tag = "kql-with-field") }
4140
)

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/fulltext/Match.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ public class Match extends FullTextFunction implements OptionalArgument, PostAna
135135

136136
@FunctionInfo(
137137
returnType = "boolean",
138-
preview = true,
139138
description = """
140139
Use `MATCH` to perform a <<query-dsl-match-query,match query>> on the specified field.
141140
Using `MATCH` is equivalent to using the `match` query in the Elasticsearch Query DSL.

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/fulltext/MatchOperator.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ public class MatchOperator extends Match {
2828
@FunctionInfo(
2929
returnType = "boolean",
3030
operator = ":",
31-
preview = true,
3231
description = """
3332
Use the match operator (`:`) to perform a <<query-dsl-match-query,match query>> on the specified field.
3433
Using `:` is equivalent to using the `match` query in the Elasticsearch Query DSL.

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/fulltext/MatchPhrase.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ public class MatchPhrase extends FullTextFunction implements OptionalArgument, P
9292

9393
@FunctionInfo(
9494
returnType = "boolean",
95-
preview = true,
9695
description = """
9796
Use `MATCH_PHRASE` to perform a [`match_phrase`](/reference/query-languages/query-dsl/query-dsl-match-query-phrase.md) on the
9897
specified field.

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/fulltext/QueryString.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ public class QueryString extends FullTextFunction implements OptionalArgument {
104104

105105
@FunctionInfo(
106106
returnType = "boolean",
107-
preview = true,
108107
description = "Performs a <<query-dsl-query-string-query,query string query>>. "
109108
+ "Returns true if the provided query string matches the row.",
110109
examples = {

0 commit comments

Comments
 (0)