Skip to content

Commit 6792d0d

Browse files
authored
[8.x] SQL: Docs: Drop examples of LIKE/RLIKE vs QUERY/MATCH equivalence #125970 (#126399)
Backport of #125673
1 parent d832cb6 commit 6792d0d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

docs/reference/sql/functions/like-rlike.asciidoc

+2
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ IMPORTANT: Even though `RLIKE` is a valid option when searching or filtering in
8484
When using `LIKE`/`RLIKE`, do consider using <<sql-functions-search, full-text search predicates>> which are faster, much more powerful
8585
and offer the option of sorting by relevancy (results can be returned based on how well they matched).
8686

87+
////
8788
For example:
8889
8990
[cols="<m,<m"]
@@ -97,3 +98,4 @@ For example:
9798
|`foo RLIKE 'ba.*'` |`MATCH(foo, 'ba', 'fuzziness=AUTO:1,5')`
9899
|`foo RLIKE 'b.{1}r'` |`MATCH(foo, 'br', 'fuzziness=1')`
99100
|===
101+
////

0 commit comments

Comments
 (0)