/* | |
* 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}); | |