Brandon Shelley created USERGRID-1334:
-----------------------------------------
Summary: When selecting specific properties via ql, returned key
names are all lowercase
Key: USERGRID-1334
URL: https://issues.apache.org/jira/browse/USERGRID-1334
Project: Usergrid
Issue Type: Bug
Components: Stack
Affects Versions: 2.1.0
Reporter: Brandon Shelley
Consider the following two queries:
{code}ql=select * where view='store'
ql=select uuid, bundleId, imageType, name where view='store'{/code}
The first query returns results properly using the expected case, e.g.:
{code}{
"bundleId": "xxxx"
"imageType": "yyyy"
}{/code}
The second, however, converts all key names to lowercase:
{code}{
"bundleid": "xxxx"
"imagetype": "yyyy"
}{/code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)