Tigran M
Tigran M
@shi-yuan Here is the problem. When I am doing select like this ```sql SELECT filed FROM index WHERE field_2 LIKE 'a_b%' ``` It's converted to ``a?b*`` which means any symbol...
Thank you, it is working. Can you please help one more thing? How can we escape ``*`` and ``?`` symbols? I tried standard backslash, but it is not working. ``LIKE...
It is not working. Here is example. You have 2 doc 1. ``asd`` 2. ``a*d`` your search query is ```sql select filed from index where q=query('field_2:a\\*d') ``` This query result...
I am using elastic search version 6.6.0, plugin version current master (commit c430207) in doc have data 1. asd 2. a*d executing query ```sql select filed from index where q=query('filed:a\\*d')...
#79 Added reference to opened issue