]
Adrian Nistor updated ISPN-7301:
--------------------------------
Git Pull Request:
Right operand in term query is not being analyzed
-------------------------------------------------
Key: ISPN-7301
URL:
https://issues.jboss.org/browse/ISPN-7301
Project: Infinispan
Issue Type: Bug
Components: Embedded Querying, Remote Querying
Affects Versions: 9.0.0.Beta1
Reporter: Jiří Holuša
Assignee: Adrian Nistor
Fix For: 9.0.0.Beta2
With default configuration, default analyzer should at least do lower-casing, hence
following two queries should return the same results:
{code}
from Entity where longDescription:'rent'
{code}
{code}
from Entity where longDescription:'RENT'
{code}
However, according to my tests, lower-casing is not happening, hence I'm deducing
that the right operand analysis doesn't happen at all.
PR contains test for it as well as other tests for extending query testsuite.