I've created an external table having 4 columns. One of the column is of custom datatype.
create EXTERNAL table public.test_table_1(
uuid varchar(36),
event_id varchar(36),
last_updated_timestamp bigint,
user_app struct<starttime : int, endtime : int, id_1 : struct<value : float>>
I want to update the column user_app
to a new datatype of formar:
struct<starttime : int, endtime : int, id_1 : struct<value : float>, id_2 : struct<value : float>>