Why is the Hive split function returning two extra elements? My input string only has 4 characters but split returns an array with 6 elements.
hive> select split('TEST','');
OK
["","T","E","S","T",""]
My goal was to convert the input string to character array.