Details
-
New Feature
-
Status: Resolved
-
Minor
-
Resolution: Duplicate
-
Impala 2.3.0
-
None
-
None
Description
Add Impala's handling of complex types in a way that is similar to hive where if you query an array then the whole array is returned.
Hive Example:
select arr from arr_test;
['a','b']
['c','d'.'e']
Impala:
select * from arr_test.arr;
a
b
c
d
e
Attachments
Issue Links
- duplicates
-
IMPALA-3111 Selecting collection types returns json output rather than analysis error
- Closed