I am unable to append data to tables that contain an array column using insert into statements; the data type is array < varchar(200) >
Using jodbc I am unable t
make a dummy table which has atleast one row.
dummy
one row
INSERT INTO demo.table (codes) VALUES (array('a','b')) from dummy limit 1; hive> select codes demo.table; OK ["a","b"] Time taken: 0.088 seconds, Fetched: 1 row(s)