blob: 8c9500f5fd5acf940cfb7d62418e151d402d8fc1 [file] [log] [blame]
/*
* Description : Tests whether an ngram_index is applied to optimize a selection query using
* two edit-distance-check function of which only the first can be optimized with an index.
* Tests that the optimizer rule correctly drills through the let clauses.
* 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-complex_ngram-edit-distance-check-let-panic-nopanic_01.adm";
// Only the first edit-distance-check can be optimized with an index.
for $o in dataset('DBLP')
let $eda := edit-distance-check($o.authors, "Amihay Motro", 3)
let $edb := edit-distance-check($o.authors, "Amihay Motro", 5)
where $eda[0] and $edb[0]
return $o