lwhay / asterixdb

Automatically exported from code.google.com/p/asterixdb
0 stars 0 forks source link

FuzzyJoinRule cannot retrieve the similarity threshold if it is not set using "set simthreshold" statement #636

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Rares' FuzzyJoin will run the following query with the default similarity 
threshold 0.8f:

use dataverse fuzzyjoin;

for $i in dataset('DBLP')
for $j in dataset('CSX')
where similarity-jaccard(word-tokens($i.title), word-tokens($j.title)) >= 0.5f
order by $i.id, $j.id
return {'dblp': $i, 'csx': $j}

Original issue reported on code.google.com by icetin...@gmail.com on 18 Sep 2013 at 11:07

GoogleCodeExporter commented 9 years ago
This issue was closed by revision 31ca2e16f1af.

Original comment by icetin...@gmail.com on 26 Sep 2013 at 12:28

GoogleCodeExporter commented 9 years ago

Original comment by icetin...@gmail.com on 26 Sep 2013 at 12:29