blob: 0370fff64cbf79aceb38ab45d59179ffd9b57b2d [file] [log] [blame]
/*
* Description : Tests that the SimilarityCheckRule rewrites the edit-distance function with a threshold
* into edit-distance-check if possible.
* Replacement should 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-to-edit-distance-check_01.adm";
for $o in dataset('DBLP')
where edit-distance($o.authors, "Michael J. Carey") <= 2
return $o