Deneche A. Hakim created DRILL-2776:
---------------------------------------
Summary: querying a .json file that contains a repeated type
returns the wrong results
Key: DRILL-2776
URL: https://issues.apache.org/jira/browse/DRILL-2776
Project: Apache Drill
Issue Type: Bug
Affects Versions: 0.8.0
Reporter: Deneche A. Hakim
Assignee: Deneche A. Hakim
Priority: Critical
Fix For: 1.0.0
I have the following .json file:
{code}
{"bag":[]}
{"bag":[1]}
{code}
doing a select star on it returns the following results:
{noformat}
0: jdbc:drill:zk=local> select * from dfs.data.`t.json`;
+------------+
| bag |
+------------+
| [] |
| null |
+------------+
{noformat}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)