You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Scott Smerchek (JIRA)" <ji...@apache.org> on 2013/02/06 21:17:14 UTC

[jira] [Created] (SOLR-4410) Highlight query parameter (hl.q) does not honor QParser defType parameter

Scott Smerchek created SOLR-4410:
------------------------------------

             Summary: Highlight query parameter (hl.q) does not honor QParser defType parameter
                 Key: SOLR-4410
                 URL: https://issues.apache.org/jira/browse/SOLR-4410
             Project: Solr
          Issue Type: Bug
          Components: highlighter
    Affects Versions: 4.1
            Reporter: Scott Smerchek
            Priority: Minor


If one uses a custom QParser for parsing standard queries, that person cannot do the same with the highlight query parameter using the 'defType' parameter.

The hl.q QParser will always default to the default defType unless the local params syntax is used to specify a different QParser.

The typical expectation would be that q and hl.q would behave the same.

The following examples should highlight the document in the same way:
{code}
q=field:text&hl=true&defType=custom
{code}
{code}
q=id:123&hl=true&hl.q=field:text&defType=custom
{code}

This is how you have to do it now:
{code}
q=field:text&hl=true&defType=custom
{code}
{code}
q=id:123&hl=true&hl.q={!custom}field:text&defType=custom
{code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org