Skip to content

Commit 3bdead6

Browse files
Merge branch 'main' into layout-build-dedup
2 parents 4248196 + b6b8159 commit 3bdead6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/reference/query-languages/sql/sql-like-rlike-operators.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ Even though `RLIKE` is a valid option when searching or filtering in Elasticsear
9090

9191
When using `LIKE`/`RLIKE`, do consider using [full-text search predicates](/reference/query-languages/sql/sql-functions-search.md) which are faster, much more powerful and offer the option of sorting by relevancy (results can be returned based on how well they matched).
9292

93+
<!--
9394
For example:
9495
9596
| | |
@@ -101,5 +102,4 @@ For example:
101102
| ``foo LIKE 'bar' AND tar LIKE 'goo'`` | ``QUERY('foo: bar AND tar: goo')`` |
102103
| ``foo RLIKE 'ba.*'`` | ``MATCH(foo, 'ba', 'fuzziness=AUTO:1,5')`` |
103104
| ``foo RLIKE 'b.{{1}}r'`` | ``MATCH(foo, 'br', 'fuzziness=1')`` |
104-
105-
105+
-->

0 commit comments

Comments
 (0)