Skip to content

Commit 6f6f483

Browse files
committed
Fix like/rlike links
1 parent c59f222 commit 6f6f483

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/reference/query-languages/esql/_snippets/operators-orig.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ ROW a = 1, b = 4, c = 3
516516
| 1 | 4 | 3 |
517517

518518

519-
## `LIKE` [esql-like-operator]
519+
## `LIKE` [esql-like]
520520

521521
Use `LIKE` to filter data based on string patterns using wildcards. `LIKE` usually acts on a field placed on the left-hand side of the operator, but it can also act on a constant (literal) expression. The right-hand side of the operator represents the pattern.
522522

@@ -558,7 +558,7 @@ ROW message = "foo * bar"
558558
```
559559

560560

561-
## `RLIKE` [esql-rlike-operator]
561+
## `RLIKE` [esql-rlike]
562562

563563
Use `RLIKE` to filter data based on string patterns using using [regular expressions](/reference/query-languages/regexp-syntax.md). `RLIKE` usually acts on a field placed on the left-hand side of the operator, but it can also act on a constant (literal) expression. The right-hand side of the operator represents the pattern.
564564

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
% This is generated by ESQL's AbstractFunctionTestCase. Do no edit it. See ../README.md for how to regenerate it.
22

3-
## `LIKE` [esql-like-operator]
3+
## `LIKE` [esql-like]
44

55
Use `LIKE` to filter data based on string patterns using wildcards. `LIKE` usually acts on a field placed on the left-hand side of the operator, but it can also act on a constant (literal) expression. The right-hand side of the operator represents the pattern.
66

docs/reference/query-languages/esql/_snippets/operators/layout/rlike.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
% This is generated by ESQL's AbstractFunctionTestCase. Do no edit it. See ../README.md for how to regenerate it.
22

3-
## `RLIKE` [esql-rlike-operator]
3+
## `RLIKE` [esql-rlike]
44

55
Use `RLIKE` to filter data based on string patterns using using [regular expressions](/reference/query-languages/regexp-syntax.md). `RLIKE` usually acts on a field placed on the left-hand side of the operator, but it can also act on a constant (literal) expression. The right-hand side of the operator represents the pattern.
66

docs/reference/query-languages/esql/_snippets/operators/like-and-rlike-orig.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
:::{include} ../lists/like-and-rlike-operators.md
44
:::
55

6-
## `LIKE` [esql-like-operator]
6+
## `LIKE` [esql-like]
77

88
Use `LIKE` to filter data based on string patterns using wildcards. `LIKE` usually acts on a field placed on the left-hand side of the operator, but it can also act on a constant (literal) expression. The right-hand side of the operator represents the pattern.
99

@@ -46,7 +46,7 @@ ROW message = "foo * bar"
4646
| WHERE message LIKE """foo \* bar"""
4747
```
4848

49-
## `RLIKE` [esql-rlike-operator]
49+
## `RLIKE` [esql-rlike]
5050

5151
Use `RLIKE` to filter data based on string patterns using using [regular expressions](/reference/query-languages/regexp-syntax.md). `RLIKE` usually acts on a field placed on the left-hand side of the operator, but it can also act on a constant (literal) expression. The right-hand side of the operator represents the pattern.
5252

0 commit comments

Comments
 (0)