[ http://issues.apache.org/jira/browse/LUCENENET-13?page=all ]

Ivan Gu?vinec updated LUCENENET-13:
-----------------------------------

    Attachment: MultiSearcher.Query.diff

I had to fix this issue also. While I was at it, I also included the changes to 
MultiSearcher.CreateWeight() method as noted in LUCENENET-12.

Attached "MultiSearcher.Query.diff" is a diff/patch created using SVN on Trunk 
revision 431853.

> Multisearcher one word query bug
> --------------------------------
>
>                 Key: LUCENENET-13
>                 URL: http://issues.apache.org/jira/browse/LUCENENET-13
>             Project: Lucene.Net
>          Issue Type: Bug
>            Reporter: Piotr Dobrowolski
>         Attachments: MultiSearcher.Query.diff
>
>
> When I use multisearcher method Search(query, filter,maxResults) with one 
> word query it throws an exception.
> I think that this code is responsible for it:
> if (splittable)
> {
>    for (int j = 0; j < clauses.Length; j++)
>    {
>       Query tmp = clauses[j].GetQuery();
>       uniques.Add(tmp, tmp);
>    }
> }
> I think it shoul look more like this:
> if (splittable)
> {
>    for (int j = 0; j < clauses.Length; j++)
>    {
>       Query tmp = clauses[j].GetQuery();
>       if(uniques.Contains(tmp) == false)
>          uniques.Add(tmp, tmp);
>    }
> }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to