http://apache-carbondata-dev-mailing-list-archive.168.s1.nabble.com/jira-Resolved-CARBONDATA-4191-update-table-for-primitive-column-not-working-when-complex-child-columh-tp108524.html
Kunal Kapoor resolved CARBONDATA-4191.
> update table for primitive column not working when complex child column name and primitive column name match
> ------------------------------------------------------------------------------------------------------------
>
> Key: CARBONDATA-4191
> URL:
https://issues.apache.org/jira/browse/CARBONDATA-4191> Project: CarbonData
> Issue Type: Bug
> Reporter: Mahesh Raju Somalaraju
> Priority: Major
> Fix For: 2.2.0
>
> Time Spent: 5h 10m
> Remaining Estimate: 0h
>
>
> 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);