Mike Sokolov created SOLR-6672:
----------------------------------

             Summary: function results' names should not include trailing 
whitespace
                 Key: SOLR-6672
                 URL: https://issues.apache.org/jira/browse/SOLR-6672
             Project: Solr
          Issue Type: Bug
          Components: search
            Reporter: Mike Sokolov
            Priority: Minor


If you include a function as a result field in a list of multiple fields 
separated by white space, the corresponding key in the result markup includes 
trailing whitespace; Example:

{code}
fl="id field(units_used) archive_id"
{code}

ends up returning results like this:

{code}
      {
        "id": "nest.epubarchive.1",
        "archive_id": "urn:isbn:97849D42C5A01",
        "field(units_used) ": 123
                          ^
      }
{code}

A workaround is to use comma separators instead of whitespace

{code} 
fl="id,field(units_used),archive_id"
{code}




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to