blob: 7decdb5ab0421ef449484b7bf828f478823e6bd2 [file] [log] [blame]
/*
* Description : Tests whether an ngram_index is applied to optimize a selection query using the edit-distance function on strings.
* The index should *not* be applied (see below).
* 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) primary key id;
create index ngram_index on DBLP(authors) type ngram(3);
write output to nc1:"rttest/inverted-index-basic_ngram-edit-distance-panic.adm";
// This query cannot be optimized with an index, based on the high edit distance.
for $o in dataset('DBLP')
where edit-distance($o.authors, "Amihay Motro") <= 5
return $o