Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
-
None
-
None
Description
Validation not present for children column in desc column for a primitive datatype and higher level non existing children column desc column for a complex datatype
drop table if exists complexcarbontable; create table complexcarbontable (deviceInformationId int,channelsId string,ROMSize string,purchasedate string,mobile struct<imei:string, imsi:string>,MAC array<string>,gamePointId map<string,string>,contractNumber double) STORED AS carbondata;
describe column deviceInformationId.x on complexcarbontable; describe column channelsId.x on complexcarbontable;
describe column mobile.imei.x on complexcarbontable; describe column MAC.item.x on complexcarbontable; describe column gamePointId.key.x on complexcarbontable;
[Expected Result] :- Validation should be provided for children column in desc column for a primitive datatype and higher level non existing children column desc column for a complex datatype. Command execution should fail.
[Actual Issue] : - Validation not present for children column in desc column for a primitive datatype and higher level non existing children column desc column for a complex datatype. As a result the command execution is successful.