[ 
https://issues.apache.org/jira/browse/LUCENENET-479?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Christopher Currens closed LUCENENET-479.
-----------------------------------------

    Resolution: Fixed

This was fixed along with re-porting the parser in LUCENENET-478.

Additionally, SetEnablePositionIncrements and GetEnablePositionIncrements now 
uses a bool instead of a class, and is now a public property with a getter and 
setter (EnablePositionIncrements)
                
> QueryParser.SetEnablePositionIncrements(false) doesn't work
> -----------------------------------------------------------
>
>                 Key: LUCENENET-479
>                 URL: https://issues.apache.org/jira/browse/LUCENENET-479
>             Project: Lucene.Net
>          Issue Type: Bug
>          Components: Lucene.Net Core
>    Affects Versions: Lucene.Net 2.9.2, Lucene.Net 2.9.4, Lucene.Net 2.9.4g
>            Reporter: Christopher Currens
>             Fix For: Lucene.Net 3.0.3
>
>
> Trying to disable position increments via SetEnablePositionIncrements(false) 
> has no effect, at least on phrase queries.
> The parsed query returned from the QueryParser with this input, should by 
> default return a phrase query whose terms look like: "Query with Stopwords" 
> should look silmilar to this if converted to a string: "query ? stopwords", 
> where ? is a null term query in the phrase query.
> With EnablePositionIncrements set to false, the resulting query should be 
> similary to "query stopwords".  However, calling 
> SetEnablePositionIncrements(false) has no effect on the resulting query.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to