I am using hive 1.1
hive> select country from releases limit 1;
OK
["us","ca","fr"]
For now country is of type string in hive . How do I convert that into Array[String]?
I tried the below, but it is throwing error
hive> select country, cast(country as Array[String]) from releases limit 1;
FAILED: ParseException line 1:48 cannot recognize input near 'Array' '[' 'String' in primitive type specification
Can someone help me to do the typecasting?