Ahmet Arslan created LUCENE-5530:
------------------------------------

             Summary:  ComplexPhraseQueryParser throws ParseException for 
fielded queries
                 Key: LUCENE-5530
                 URL: https://issues.apache.org/jira/browse/LUCENE-5530
             Project: Lucene - Core
          Issue Type: Bug
          Components: modules/queryparser
    Affects Versions: 4.7
            Reporter: Ahmet Arslan
             Fix For: 4.8


Queries using QueryParser's non-default field e.g.
author:"j* smith" are not supported by ComplexPhraseQueryParser. For example 
following code snippet 

{code}
ComplexPhraseQueryParser qp = new 
ComplexPhraseQueryParser(TEST_VERSION_CURRENT, "defaultField", new 
MockAnalyzer(new Random()));
      qp.parse("author:\"fred* smith\"") ;
{code}

yields 

{noformat}
Caused by: org.apache.lucene.queryparser.classic.ParseException: Cannot have 
clause for field "defaultField" nested in phrase  for field "author"
        at 
org.apache.lucene.queryparser.complexPhrase.ComplexPhraseQueryParser.checkPhraseClauseIsForSameField(ComplexPhraseQueryParser.java:147)
        at 
org.apache.lucene.queryparser.complexPhrase.ComplexPhraseQueryParser.newTermQuery(ComplexPhraseQueryParser.java:135)
        ... 49 more
{noformat}



--
This message was sent by Atlassian JIRA
(v6.2#6252)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to