let's say I have a hive table that has only one column of type array<int>.
I can insert into that table by
INSERT INTO TABLE tablename SELECT array(1);
but what if I want to insert an empty int array into that column? Didn't figure out. Tried with array(), [], array<int> and array<int>()