Skip to content

Commit 88b4415

Browse files
committed
Revert incorrect preview/GA status changes
- Revert CATEGORIZE back to GA (remove preview flags that were incorrectly added) - Revert spatial functions (ST_CONTAINS, ST_DISJOINT, ST_INTERSECTS, ST_WITHIN) back to GA - Revert match operator to show PREVIEW status correctly - Revert MatchOperator appliesTo annotation to PREVIEW lifecycle - Update TO_LOWER/TO_UPPER parameter descriptions for clarity
1 parent 09fb70e commit 88b4415

File tree

11 files changed

+15
-20
lines changed

11 files changed

+15
-20
lines changed

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

Lines changed: 0 additions & 4 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/operators/layout/match_operator.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
### Match operator (`:`) [esql-match-operator]
2+
```{applies_to}
3+
stack: preview 9.0.0
4+
serverless: preview
5+
```
26

37
The only search operator is match (`:`).
48

docs/reference/query-languages/esql/kibana/definition/functions/categorize.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/st_contains.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/st_disjoint.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/st_intersects.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/st_within.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/to_lower.json

Lines changed: 2 additions & 2 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/to_upper.json

Lines changed: 2 additions & 2 deletions
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/MatchOperator.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@ public class MatchOperator extends Match {
3131
returnType = "boolean",
3232
operator = ":",
3333
preview = true,
34-
appliesTo = {
35-
// @FunctionAppliesTo(lifeCycle = FunctionAppliesToLifecycle.PREVIEW, version = "9.0.0"),
36-
@FunctionAppliesTo(lifeCycle = FunctionAppliesToLifecycle.GA, version = "9.1.0") },
34+
appliesTo = { @FunctionAppliesTo(lifeCycle = FunctionAppliesToLifecycle.PREVIEW, version = "9.0.0") },
35+
// @FunctionAppliesTo(lifeCycle = FunctionAppliesToLifecycle.GA, version = "9.1.0") },
3736
description = """
3837
Use the match operator (`:`) to perform a <<query-dsl-match-query,match query>> on the specified field.
3938
Using `:` is equivalent to using the `match` query in the Elasticsearch Query DSL.

0 commit comments

Comments
 (0)