Skip to content

Commit 85a7246

Browse files
committed
Remove preview from FTFs annotations
1 parent f76e201 commit 85a7246

File tree

10 files changed

+3
-25
lines changed

10 files changed

+3
-25
lines changed

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

Lines changed: 0 additions & 6 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.md

Lines changed: 0 additions & 6 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/qstr.md

Lines changed: 0 additions & 6 deletions
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/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/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.

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
@@ -138,7 +138,6 @@ public class Match extends FullTextFunction implements OptionalArgument, PostAna
138138

139139
@FunctionInfo(
140140
returnType = "boolean",
141-
preview = true,
142141
description = """
143142
Use `MATCH` to perform a <<query-dsl-match-query,match query>> on the specified field.
144143
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/QueryString.java

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

107107
@FunctionInfo(
108108
returnType = "boolean",
109-
preview = true,
110109
description = "Performs a <<query-dsl-query-string-query,query string query>>. "
111110
+ "Returns true if the provided query string matches the row.",
112111
examples = {

0 commit comments

Comments
 (0)