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) | ||||
14 | partitioned by key id on group1; | ||||
15 | |||||
16 | write output to nc1:"/tmp/amerix.adm"; | ||||
17 | |||||
18 | for $paperR in dataset('DBLP') | ||||
19 | for $paperS in dataset('DBLP') | ||||
20 | where $paperR.title ~= $paperS.title | ||||
21 | return { 'R': $paperR, | ||||
22 | 'S': $paperS } |