You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geode.apache.org by "Barry Oglesby (JIRA)" <ji...@apache.org> on 2017/05/19 17:08:04 UTC

[jira] [Created] (GEODE-2952) gfsh doesn't support exact match lucene queries

Barry Oglesby created GEODE-2952:
------------------------------------

             Summary: gfsh doesn't support exact match lucene queries
                 Key: GEODE-2952
                 URL: https://issues.apache.org/jira/browse/GEODE-2952
             Project: Geode
          Issue Type: Bug
          Components: lucene
            Reporter: Barry Oglesby


This command:
{noformat}
gfsh>search lucene --name=index --region=data --defaultField=Resolution_Description --queryStrings='Police Dept'
{noformat}
Runs this lucene query:
{noformat}
Resolution_Description:police Resolution_Description:dept
{noformat}
I also tried this command which ran the same lucene query as above:
{noformat}
gfsh>search lucene --name=index --region=data --defaultField=Resolution_Description --queryStrings='\"Police Dept\"'
{noformat}
The java API supports exact match queries with "" around the queryString. Doing this causes this lucene query to be run:
{noformat}
Resolution_Description:"police dept"
{noformat}




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)