Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
Description
I have a query:
SELECT a_s, count(*) as cnt FROM $ALIAS WHERE a_s='hello*' GROUP BY a_s ORDER BY count(*) desc LIMIT 10
This fails to match documents that should match. The problem is the query that gets generated is q=a_s:"hello*".
Query should get generated like:
{!complexphrase}a_s:"hello*"
which matches ...
Attachments
Issue Links
- is fixed by
-
SOLR-15460 Solr SQL doesn't support LIKE operator
- Closed