blob: a9372ecec6e1ae3576ccae3930c2fe13beb394b1 [file] [log] [blame]
/*
* Description : Tests that the SimilarityCheckRule rewrites the edit-distance function with a threshold
* into edit-distance-check if possible.
* Replacement should *not* happen because of a reverse ">=" 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;
load dataset DBLP
using "edu.uci.ics.asterix.external.dataset.adapter.NCFileSystemAdapter"
(("path"="nc1://data/dblp-small/dblp-small-id.txt"),("format"="delimited-text"),("delimiter"=":")) pre-sorted;
write output to nc1:"rttest/similarity_edit-distance-to-edit-distance-check_06.adm";
// We cannot introduce edit-distance-check because the condition is <=
for $o in dataset('DBLP')
where 2 <= edit-distance($o.authors, "Michael J. Carey")
return $o