blob: 87de1fb3117648797cb27bb3ba441af384a9e063 [file] [log] [blame]
/*
* Description : Tests whether an ngram_index is applied to optimize a selection query with ~= using edit-distance on strings.
* The index should be applied.
* 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;
create index ngram_index on DBLP(authors) type ngram(3);
write output to nc1:"rttest/inverted-index-basic_ngram-fuzzyeq-edit-distance.adm";
set simfunction 'edit-distance';
set simthreshold '1';
for $o in dataset('DBLP')
where $o.authors ~= "Amihay Motro"
return $o