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