No it doesn't match. You have to get the search in as a single term. You get a lot of information by adding &debug=true and looking at your parsed query.
Try myFieldName:"Some\ Text" o myFieldName:Some\ Text Best, Erick On Wed, Nov 14, 2018 at 4:02 PM Angel Todorov <attodo...@gmail.com> wrote: > > Hi guys, > > I have SOLR 6.5 , and a custom defined field which is of type string (not > text or text_general). In some document, there is the value for that field, > for example, "Some Text" . When I query by myFieldName:"Some Text" , I > don't get any matches, but I think I should, because this matches the value > literally/precisely, and the type is "string". > > If I do the following query, it returns the correct results > myFieldName:Some*Text > > Why do you think this is happening? > > Thank you