blob: 8f98736319910cbc44b3373413a208882ac49fc6 [file] [log] [blame]
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +00001/*
2 * Description : This test is intended to verify that the secondary BTree index is used
3 * : in the optimized query plan.
4 * Expected Result : Success
5 * Date : 13th Aug 2012
6 */
7
8drop dataverse test if exists;
9create dataverse test;
10use dataverse test;
11
12write output to nc1:"rttest/btree-index_btree-secondary-57.adm";
13
14create type TestType as open {
15 id : int32,
16 fname : string,
17 lname : string
18}
19
20create dataset testdst(TestType) partitioned by key id;
21
22create index sec_Idx on testdst(fname);
23
24load dataset testdst
25using "edu.uci.ics.asterix.external.dataset.adapter.NCFileSystemAdapter"
26(("path"="nc1://data/id-fn-ln.adm"),("format"="delimited-text"),("delimiter"="|"));
27
28for $emp in dataset('testdst')
29where $emp.fname >= "Max" and $emp.fname <= "Roger"
30return $emp