Uploaded image for project: 'Lucene - Core'
  1. Lucene - Core
  2. LUCENE-2458

queryparser makes all CJK queries phrase queries regardless of analyzer

Details

    • Bug
    • Status: Closed
    • Blocker
    • Resolution: Fixed
    • None
    • 3.1, 4.0-ALPHA
    • core/queryparser
    • None
    • New, Patch Available

    Description

      The queryparser automatically makes ALL CJK, Thai, Lao, Myanmar, Tibetan, ... queries into phrase queries, even though you didn't ask for one, and there isn't a way to turn this off.

      This completely breaks lucene for these languages, as it treats all queries like 'grep'.

      Example: if you query for f:abcd with standardanalyzer, where a,b,c,d are chinese characters, you get a phrasequery of "a b c d". if you use cjk analyzer, its no better, its a phrasequery of "ab bc cd", and if you use smartchinese analyzer, you get a phrasequery like "ab cd". But the user didn't ask for one, and they cannot turn it off.

      The reason is that the code to form phrase queries is not internationally appropriate and assumes whitespace tokenization. If more than one token comes out of whitespace delimited text, its automatically a phrase query no matter what.

      The proposed patch fixes the core queryparser (with all backwards compat kept) to only form phrase queries when the double quote operator is used.

      Implementing subclasses can always extend the QP and auto-generate whatever kind of queries they want that might completely break search for languages they don't care about, but core general-purpose QPs should be language independent.

      Attachments

        1. LUCENE-2458.patch
          24 kB
          Robert Muir
        2. LUCENE-2458.patch
          33 kB
          Robert Muir
        3. LUCENE-2458.patch
          57 kB
          Robert Muir
        4. LUCENE-2458.patch
          62 kB
          Robert Muir

        Issue Links

          Activity

            People

              rcmuir Robert Muir
              rcmuir Robert Muir
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: