blob: 7bf7d5fe649b04ed23bd704f3f0aff5d81d8697a [file] [log] [blame]
/*
* Description : Tests that a proper error messags is returned for this scenario.
* Since we cannot statically know the type of the field 'title', the FuzzyEqRule
* cannot auto-inject a tokenizer, and hence we expect an error saying that we cannot
* scan over a string as if it were a collection.
* Guards against regression to issue 207.
* Success : Yes
*/
drop dataverse fuzzyjoin if exists;
create dataverse fuzzyjoin;
use dataverse fuzzyjoin;
create type DBLPType as open {
id: int32
}
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.adm"),("format"="adm"));
write output to nc1:'rttest/fuzzyjoin_dblp-aqlplus_2.adm';
set simthreshold '.5f';
for $dblp in dataset('DBLP')
for $dblp2 in dataset('DBLP')
where $dblp.title ~= $dblp2.title and $dblp.id < $dblp2.id
order by $dblp.id, $dblp2.id
return {'dblp': $dblp, 'dblp2': $dblp2}