Prefix query in SimpleQueryString predicate is case sensitive
Description
Attachments
Activity

Yoann RodièreFebruary 28, 2020 at 8:18 AM
I'm a bit confused, to be honest.
There is no way to customize the enabled flags right now. That can be annoying, and adding methods to control that is definitely a good idea. However, *all flags are enabled* by default. As you noticed yourself, passing "-1" as a flag simply enables all features (that's what you did in your snippet of code).
So I'm not sure how your patch solved the problem exactly, and I'm not even sure what caused the problem. Maybe it was indeed FieldContextSimpleQueryParser
? It looks like it doesn't normalize terms before creating queries, like it should. Depending on your analyzer, that could cause no results to be returned.
That being said, if you manage to make it work using standard Lucene classes instead of our custom query parser *and* to make all pre-existing integration tests pass... Well, that would be awesome.

Waldemar KłaczyńskiFebruary 28, 2020 at 4:42 AM
I have also added support for operation flags. It is now possible to set in the predicate what operations are possible in the query. By default, if you do not call "flags()", all operations are set.

Waldemar KłaczyńskiFebruary 28, 2020 at 1:18 AMEdited
I solved the problem in LuceneSimpleQueryStringPredicateBuilder, after making these changes the problem disappeared.

Waldemar KłaczyńskiFebruary 28, 2020 at 12:35 AMEdited
Alternate query works fine. The problem is that it doesn't complete all the queries as per the documentation.
Does not return results for:
But it works well for:
It doesn't seem to make sense to use FieldContextSimpleQueryParser and only introduces errors.

Waldemar KłaczyńskiFebruary 27, 2020 at 11:40 PMEdited
Maybe you should add the "flags()" predicate?
Details
Assignee
Waldemar KłaczyńskiWaldemar KłaczyńskiReporter
Waldemar KłaczyńskiWaldemar KłaczyńskiComponents
Fix versions
Affects versions
Priority
Major
Details
Details
Assignee

Reporter

Ineffective search for the "simpleQueryString_" predicate. The SimpleQueryParser class requires the "flags" parameter in the constructor. Currently, the "flags" parameter is set to "-1", which means that the operation of this predicate does not differ from the "match" predicate. Unfortunately, this makes the predicate completely useless. The correct operation of SimpleQueryParser depends on the settings of these flags, however it is not possible to set them by defining predicates.