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.4g, Lucene.Net 2.9.4, Lucene.Net 2.9.2
            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