Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
Description
For example,
>SELECT src.key, myKey, myVal FROM src lateral view explode(map(1,'one',2,'two',3,'three')) x AS myKey,myVal LIMIT 3; 238 1 one 238 2 two 238 3 three
After CP disabled,
>SELECT src.key, myKey, myVal FROM src lateral view explode(map(1,'one',2,'two',3,'three')) x AS myKey,myVal LIMIT 3; 238 0 hdfs://localhost:9000/user/hive/warehouse/src/kv1.txt 238 0 hdfs://localhost:9000/user/hive/warehouse/src/kv1.txt 238 0 hdfs://localhost:9000/user/hive/warehouse/src/kv1.txt
Attachments
Attachments
Issue Links
- blocks
-
HIVE-4293 Predicates following UDTF operator are removed by PPD
- Resolved