vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 1 | use dataverse fuzzy1; |
2 | |||||
3 | declare type DBLPType as open { | ||||
4 | id: int32, | ||||
5 | dblpid: string, | ||||
6 | title: string, | ||||
7 | authors: string, | ||||
8 | misc: string | ||||
9 | } | ||||
10 | |||||
11 | declare nodegroup group1 on nc1, nc2; | ||||
12 | |||||
13 | declare dataset DBLP(DBLPType) | ||||
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame^] | 14 | primary key id on group1; |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 15 | |
16 | drop dataset DBLP; |