Skip to content

Commit 19d8728

Browse files
Address code review feedback and not like
1 parent e13c575 commit 19d8728

File tree

4 files changed

+2
-11
lines changed
  • docs/reference/query-languages/esql
  • x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex

4 files changed

+2
-11
lines changed

docs/reference/query-languages/esql/_snippets/operators/detailedDescription/like.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ serverless: ga
2525
Both a single pattern or a list of patterns are supported. If a list of patterns is provided,
2626
the expression will return true if any of the patterns match.
2727

28-
```{applies_to}
29-
stack: ga 9.1
30-
serverless: ga
31-
```
3228
```esql
3329
ROW message = "foobar"
3430
| WHERE message like ("foo*", "bar?")

docs/reference/query-languages/esql/kibana/definition/operators/not like.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/docs/operators/not like.md

Lines changed: 1 addition & 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/scalar/string/regex/WildcardLike.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,6 @@ also act on a constant (literal) expression. The right-hand side of the operator
6161
Both a single pattern or a list of patterns are supported. If a list of patterns is provided,
6262
the expression will return true if any of the patterns match.
6363
64-
```{applies_to}
65-
stack: ga 9.1
66-
serverless: ga
67-
```
6864
<<load-esql-example, file=where-like tag=likeListDocExample>>
6965
7066
""", operator = NAME, examples = @Example(file = "docs", tag = "like"))

0 commit comments

Comments
 (0)