You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Rahul Challapalli (JIRA)" <ji...@apache.org> on 2015/04/21 19:55:59 UTC

[jira] [Closed] (DRILL-2186) select * is not working with flatten

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

Rahul Challapalli closed DRILL-2186.
------------------------------------

This is a duplicate

> select * is not working with flatten
> ------------------------------------
>
>                 Key: DRILL-2186
>                 URL: https://issues.apache.org/jira/browse/DRILL-2186
>             Project: Apache Drill
>          Issue Type: Bug
>          Components: Functions - Drill
>            Reporter: Rahul Challapalli
>            Assignee: Daniel Barclay (Drill)
>
> git.commit.id.abbrev=c54bd6a
> Data Set :
> {code}
> {
>   "id" : 1,
>   "lst" : [1,2,3]
> }
> {code}
> The below queries incorrectly return null
> {code}
> 0: jdbc:drill:schema=dfs> select *, flatten(lst) from `temp.json`;
> +------------+------------+
> |     *      |   EXPR$1   |
> +------------+------------+
> | null       | 1          |
> | null       | 2          |
> | null       | 3          |
> +------------+------------+
> {code}
> {code}
> 0: jdbc:drill:schema=dfs> select * from `temp.json` order by flatten(lst);
> +------------+
> |     *      |
> +------------+
> | null       |
> | null       |
> | null       |
> +------------+
> {code}



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