[ 
https://issues.apache.org/jira/browse/SOLR-15463?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17364498#comment-17364498
 ] 

ASF subversion and git services commented on SOLR-15463:
--------------------------------------------------------

Commit a79e71c732a4488b82d24713568b1a553c85266b in solr's branch 
refs/heads/main from Timothy Potter
[ https://gitbox.apache.org/repos/asf?p=solr.git;h=a79e71c ]

SOLR-15460: Implement LIKE, IS NOT NULL, IS NULL, and support wildcard * in 
equals string literal (#173)

Also fixes SOLR-15459 & SOLR-15463

> Solr SQL predicate with wildcard doesn't match, needs the complex phrase 
> query parser
> -------------------------------------------------------------------------------------
>
>                 Key: SOLR-15463
>                 URL: https://issues.apache.org/jira/browse/SOLR-15463
>             Project: Solr
>          Issue Type: Bug
>      Security Level: Public(Default Security Level. Issues are Public) 
>          Components: Parallel SQL
>            Reporter: Timothy Potter
>            Assignee: Timothy Potter
>            Priority: Major
>              Labels: RobustSQL
>
> I have a query:
> {code}
> SELECT a_s, count(*) as cnt FROM $ALIAS WHERE a_s='hello*' GROUP BY a_s ORDER 
> BY count(*) desc LIMIT 10
> {code}
> 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:
> {code}
> {!complexphrase}a_s:"hello*"
> {code}
> which matches ...



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org
For additional commands, e-mail: issues-h...@solr.apache.org

Reply via email to