| drop dataverse test if exists; |
| create type DBLPType as closed { |
| create nodegroup group1 if not exists on nc1, nc2; |
| create dataset DBLP(DBLPType) |
| partitioned by key id on group1; |
| 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/index-selection_inverted-index-ngram-edit-distance-panic.adm"; |
| for $o in dataset('DBLP') |
| let $ed := edit-distance-check($o.authors, "Amihay Motro", 5) |