What is the desired behavior when I run "select * from data;" on the below structure?
data/
-- file1.json
-- folder1/
-- file2.json
file1.json : {"col1" : 1}
file2.json : {"col2" : 2}
This is what drill returns :
+------------+------------+
| dir0 | col2 |
+------------+------------+
| folder1 | 2 |
| null | null |
+------------+------------+
Looks like drill ignored the columns from the first file.
- Rahul
