blob: cad1f12742494b4dbb8b599933050f1ab5e52df2 [file] [log] [blame]
khfaraaz82@gmail.coma2716132012-04-30 06:20:50 +00001/*
2 * Test case Name : open-closed-10.aql
3 * Description : To test nullable and non nullable field types in datasets of type open.
4 * : Missing value for nullable field in insert statement.
5 * Success : This test should succeed!
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({"id :" 32 });
23
24