Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
0.14.0
-
None
-
hdp 2.2
Windows server 2012 R2 64-bit
Description
I have tweets stored with avro on hdfs with the default twitter status (tweet) schema.
There's an object called "entities" that contains arrays of structs.
When I run
SELECT mytable.*
FROM tweets
LATERAL VIEW INLINE(entities.media) mytable
I get the exception attached as partial_log.log, however, if I add
WHERE entities.media IS NOT NULL
it runs perfectly.