blob: 702b739b5104e8866c7f262b805a60dec1fe9198 [file] [log] [blame]
/*
* Description : Tests that the FuzzyEqRule rewrites ~= using edit distance
* into edit-distance-check.
* Success : Yes
*/
drop dataverse test if exists;
create dataverse test;
use dataverse test;
create type DBLPType as closed {
id: int32,
dblpid: string,
title: string,
authors: string,
misc: string
}
create dataset DBLP(DBLPType) partitioned by key id;
write output to nc1:"rttest/similarity_fuzzyeq-to-edit-distance-check.adm";
set simfunction 'edit-distance';
set simthreshold '1';
// Tests two rules: FuzzyEqRule and SimilarityCheckRule
for $o in dataset('DBLP')
where $o.authors ~= "Michael J. Carey"
return $o