blob: 73f8ddb0e51819e5b7efefc3488a4b4aa8e720fa [file] [log] [blame]
/*
* Description : Tests that the SimilarityCheckRule rewrites the edit-distance function with a threshold
* into edit-distance-check if possible.
* Tests that the optimizer drills through the let clause.
* Replacement should *not* happen because of a ">=" condition on the edit distance.
* 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_edit-distance-let-to-edit-distance-check_05.adm";
for $o in dataset('DBLP')
let $ed := edit-distance($o.authors, "Michael J. Carey")
where $ed >= 2
return $ed