blob: c37c8b592e3472e25845ef7a366495dbd6c04570 [file] [log] [blame]
vinayakb38b7ca42012-03-05 05:44:15 +00001use dataverse fuzzy1;
2
3declare type CSXType as open {
4 id: int32,
5 csxid: string,
6 title: string,
7 authors: string,
8 misc: string
9}
10
11declare nodegroup group1 on nc1, nc2;
12
13declare dataset CSX(CSXType)
14 partitioned by key id on group1;
15
16drop dataset CSX;