Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
below steps to reproduce the issue:
drop table if exists update_complex;
create table update_complex (a int, b string, struct1 STRUCT<a:int, c:string>) stored as carbondata;
insert into update_complex select 1,'c', named_struct('a',4,'b','d');
update update_complex set (a)=(4);