blob: 155f8bb0e516a6aba42f4cfb9103bfaec155e212 [file] [log] [blame]
/*
* Test case Name : open-closed-07.aql
* Description : To test non nullable field types in datasets of type open.
* Success : Yes this test should Fail!
* Date : 03/26/2012
*/
drop dataverse test if exists;
create dataverse test;
use dataverse test;
create type testType as open {
id : int32,
name : string
}
create dataset testds(testType) partitioned by key id;
insert into dataset testds({"id": 123});