Uploaded image for project: 'Solr'
  1. Solr
  2. SOLR-11470

Negative queries always return "No Results" with rq parameter.

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • None
    • None
    • contrib - LTR, search
    • None

    Description

      Overview

      Negatives queries (ex. q=NOT foo) always return "No Results" with rq parameter (ex. rq={!rerank reRankQuery=bar}). This is because QueryUtils#makeQueryable doesn't consider RankQuery and fails to modify wrapped pure negative queries to searchable ones (ex. modifies q=NOT foo to q=(NOT foo) AND *:*). Pure negative queries are rewritten as MatchNoDocsQuery by BooleanQuery#rewrite and this results in numFound="0".

      How to reproduce

      1. Prepare solr server according to Solr Tutorial.
      2. Search with /solr/techproducts/query?q=NOT foo. This returns 52 documents as the result.
      3. Search with /solr/techproducts/query?q=NOT foo&rq={!rerank reRankQuery=bar}. This returns 0 document (52 documents are expected though...) as the result.

      How to fix

      Add new API RankQuery#getMainQuery to be able to get the wrapped query from RankQuery, and use it in QueryUtils#makeQueryable to fix the original query if given argument Query q is instance of RankQuery.

      Attachments

        1. SOLR-11470.patch
          5 kB
          Yuki Yano

        Activity

          People

            Unassigned Unassigned
            yuyano Yuki Yano
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated: