Parcourir la source

SQL: Docs: Drop examples of LIKE/RLIKE vs QUERY/MATCH equivalence (#125673)

This drops the examples of LIKE/RLIKE vs QUERY/MATCH equivalence.
Bogdan Pintea il y a 6 mois
Parent
commit
b6b8159ed9

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

@@ -90,6 +90,7 @@ Even though `RLIKE` is a valid option when searching or filtering in Elasticsear
 
 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).
 
+<!--
 For example:
 
 |     |     |
@@ -101,5 +102,4 @@ For example:
 | ``foo LIKE 'bar' AND tar LIKE 'goo'`` | ``QUERY('foo: bar AND tar: goo')`` |
 | ``foo RLIKE 'ba.*'`` | ``MATCH(foo, 'ba', 'fuzziness=AUTO:1,5')`` |
 | ``foo RLIKE 'b.{{1}}r'`` | ``MATCH(foo, 'br', 'fuzziness=1')`` |
-
-
+-->