You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by "Rahul Challapalli (JIRA)" <ji...@apache.org> on 2014/08/06 00:19:13 UTC

[jira] [Created] (DRILL-1256) Drill is not displaying the column when the json has a null value for the column and the file contains a single record

Rahul Challapalli created DRILL-1256:
----------------------------------------

             Summary: Drill is not displaying the column when the json has a null value for the column and the file contains a single record
                 Key: DRILL-1256
                 URL: https://issues.apache.org/jira/browse/DRILL-1256
             Project: Apache Drill
          Issue Type: Bug
          Components: Storage - JSON
            Reporter: Rahul Challapalli
            Priority: Minor


git.commit.id.abbrev=98b208e

JSON File Used :
{code}
{
  "a" : null,
  "b" : 1
}
{code}

Query :
{code}
select * from `temp.json`;
+------------+
|     b      |
+------------+
| 1          |
+------------+
{code}

However for the below data set it works fine
{code}
{
  "a" : null,
  "b" : 1
}
{
  "a" : 1,
  "b" : null
}
{code}

Query :
{code}
select * from `temp.json`;
+------------+------------+
|     b      |     a      |
+------------+------------+
| 1          | null       |
| null       | 1          |
+------------+------------+
{code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)