ReturnFields incorrect parse fields with hyphen
------------------------------------------------
Key: SOLR-2719
URL: https://issues.apache.org/jira/browse/SOLR-2719
Project: Solr
Issue Type: Bug
Components: search
Affects Versions: 4.0
Reporter: Nik V. Babichev
fl=my-hyphen-field in query params parsed as "my" instead of "my-hyphen-field".
OAS.search.ReturnFields use method getId() from OAS.search.QueryParsing
in which check chars "if (!Character.isJavaIdentifierPart(ch) && ch != '.')"
Hyphen is not JavaIdentifierPart and this check break when first "-" is found.
This problem solve by passing '-' to check:
if (!Character.isJavaIdentifierPart(ch) && ch != '.' && ch != '-') break;
But I don't know how it can affect on whole project.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]