blob: 3ecd163f786495e35c516adb6d1fbf637afee662 [file] [log] [blame]
vinayakb38b7ca42012-03-05 05:44:15 +00001use dataverse demo0927;
2
3declare type CustomerType as closed {
4 cid: int32,
5 name: string,
6 age: int32?,
7 address: AddressType?,
8 lastorder: {
9 oid: int32,
10 total: float
11 }
12}
13
14declare type AddressType as closed {
15 number: int32,
16 street: string,
17 city: string
18}
19
20declare nodegroup group1 on nc1,nc2;
21
22declare dataset Customers(CustomerType)
23 partitioned by key cid on group1;
24
25create index NameIndex on Customers(name);