blob: 90ce266cc4ec37dd4f6ef85a8709f4e258c122c7 [file] [log] [blame]
/*
* Description : Tests whether a keyword index is applied to optimize a selection query with ~= using edit-distance on lists.
* The index should be applied.
* 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_olist/customer.adm"),("format"="adm"));
create index interests_index on Customers(interests) type keyword;
write output to nc1:"rttest/inverted-index-basic_olist-fuzzyeq-edit-distance.adm";
set simfunction 'edit-distance';
set simthreshold '1';
for $c in dataset('Customers')
where $c.interests ~= ["computers", "wine", "walking"]
order by $c.cid
return $c