You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@usergrid.apache.org by "Brandon Shelley (JIRA)" <ji...@apache.org> on 2017/02/08 21:19:41 UTC

[jira] [Updated] (USERGRID-1334) When selecting specific properties via ql, returned key names are all lowercase

     [ https://issues.apache.org/jira/browse/USERGRID-1334?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Brandon Shelley updated USERGRID-1334:
--------------------------------------
    Description: 
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}

  was:
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}


> 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)