blob: 0a43b01246dda2f93cc5ec1b545d599299a5b6c1 [file] [log] [blame]
/*
* Description : Fuzzy self joins a dataset, Customers, based on the similarity-jaccard-check function of its interest sets.
* Customers has a keyword index on interests, and we expect the join to be transformed into an indexed nested-loop join.
* We test the inlining of variables that enable the select to be pushed into the join for subsequent optimization with an index.
* Success : Yes
*/
drop dataverse test if exists;
create dataverse test;
use dataverse test;
create type AddressType as closed {
number: int32,
street: string,
city: string
}
create type CustomerType as closed {
cid: int32,
name: string,
age: int32?,
address: AddressType?,
interests: {{string}},
children: [ { name: string, age: int32? } ]
}
create dataset Customers(CustomerType) partitioned by key cid;
load dataset Customers
using "edu.uci.ics.asterix.external.dataset.adapter.NCFileSystemAdapter"
(("path"="nc1://data/semistructured/co1k/customer.adm"),("format"="adm"));
create index interests_index on Customers(interests) type keyword;
write output to nc1:"rttest/inverted-index-join_ulist-jaccard-check_04.adm";
for $a in dataset('Customers')
for $b in dataset('Customers')
let $jacc := /*+ indexnl */ similarity-jaccard-check($a.interests, $b.interests, 0.7f)
where $jacc[0] and $a.cid < $b.cid
return {"arec": $a, "brec": $b, "jacc": $jacc[1] }