blob: 63288d735f75de1a0c765d5b5a6dd01bdced8778 [file] [log] [blame]
/*
* Test case Name : open-closed-09.aql
* Description : To test nullable and non nullable field types in datasets of type open.
* : Missing value for nullable field and missing value for non-nullable field in insert statement.
* Success : 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({ });