blob: 63288d735f75de1a0c765d5b5a6dd01bdced8778 [file] [log] [blame]
khfaraaz82@gmail.coma2716132012-04-30 06:20:50 +00001/*
2 * Test case Name : open-closed-09.aql
3 * Description : To test nullable and non nullable field types in datasets of type open.
4 * : Missing value for nullable field and missing value for non-nullable field in insert statement.
5 * Success : This test should Fail!
6 * Date : 03/26/2012
7 */
8
9drop dataverse test if exists;
10
11create dataverse test;
12
13use dataverse test;
14
15create type testType as open {
16id : int32,
17name : string?
18}
19
20create dataset testds(testType) partitioned by key id;
21
22insert into dataset testds({ });
23
24