elasticsearch/docs/reference/sql/functions
Andras Palinkas 190d9fe3de
SQL: Escaped wildcard (*) not accepted in LIKE (#63428)
For a query like `SELECT name FROM test WHERE name LIKE ''%c*'` ES SQL
generates an error. `*` is not a special character in a `LIKE` construct
and it's expected to not needing to be escaped, so the previous query
should work as is.
In the LIKE pattern any `*` character was treated as invalid character
and the usage of `%` or `_` was suggested instead. But `*` is a valid,
acceptable non-wildcard on the right side of the `LIKE` operator.

Fix: #55108
2020-10-13 09:38:35 -04:00
..
aggs.asciidoc
conditional.asciidoc
date-time.asciidoc
geo.asciidoc
grouping.asciidoc
index.asciidoc
like-rlike.asciidoc SQL: Escaped wildcard (*) not accepted in LIKE (#63428) 2020-10-13 09:38:35 -04:00
math.asciidoc
operators.asciidoc
search.asciidoc
string.asciidoc
system.asciidoc
type-conversion.asciidoc