You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Hanifi Gunes (JIRA)" <ji...@apache.org> on 2015/04/29 22:49:06 UTC

[jira] [Comment Edited] (DRILL-2036) select * query returns wrong result when column name in json file changes case

    [ https://issues.apache.org/jira/browse/DRILL-2036?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14520136#comment-14520136 ] 

Hanifi Gunes edited comment on DRILL-2036 at 4/29/15 8:48 PM:
--------------------------------------------------------------

-+1- I retract the previous plus one. [~sphillips] can you take a look at SingleMapWriter as well? Vector handling seems case sensitive.


was (Author: hgunes):
+1

> select * query returns wrong result when column name in json file changes case
> ------------------------------------------------------------------------------
>
>                 Key: DRILL-2036
>                 URL: https://issues.apache.org/jira/browse/DRILL-2036
>             Project: Apache Drill
>          Issue Type: Bug
>          Components: Storage - JSON
>    Affects Versions: 0.8.0
>            Reporter: Victoria Markman
>            Assignee: Steven Phillips
>            Priority: Critical
>             Fix For: 1.0.0
>
>         Attachments: DRILL-2036.patch
>
>
> {code}
> #Sun Jan 18 21:24:57 EST 2015
> git.commit.id.abbrev=a418af1
> {code}
> test.json - column "city" has upper case C in the second row
> {code}
> { "CustomerId": "100", "city": 10 }
> { "CustomerId": "101", "City": 20 }
> {code}
> Wrong result:
> {code}
> 0: jdbc:drill:schema=dfs> select * from `test.json`;
> +------------+------------+
> | CustomerId |    city    |
> +------------+------------+
> | 100        | null       |
> | 101        | 20         |
> +------------+------------+
> 2 rows selected (0.077 seconds)
> {code}



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