blob: e37b49a82aa438d897cc4cf1fdde70478f3ea5e1 [file] [log] [blame]
vinayakb38b7ca42012-03-05 05:44:15 +00001use dataverse demo_aql;
2
3declare type DBLPType as open {
4 id: int32,
5 dblpid: string,
6 title: string,
7 authors: string,
8 misc: string
9}
10
11declare nodegroup group1 on nc1, nc2;
12
13declare dataset DBLP(DBLPType)
14 partitioned by key id on group1;
15
16write output to nc1:"/tmp/102-fuzzy-select.adm";
17
18for $x in dataset('DBLP')
19let $ed := edit-distance($x.authors, "Michael Carey")
20where $ed <= 3
21order by $ed, $x.authors
22return { "edit-distance":$ed, "authors":$x.authors, "title":$x.title }