blob: 44a3fe7c8f1b3ce95c95eefa89e81fd763940099 [file] [log] [blame]
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +00001/*
2 * Description : BTree Index verification (usage) test
3 * : This test is intended to verify that the secondary BTree index is used
4 * : in the optimized query plan for the predicates that satisfy BTree index look up rule.
5 * Expected Result : Success
6 * Date : 13th Aug 2012
7 */
8
9// Negative test - prefix search, BTree index should NOT be used in the query plan.
10
11drop dataverse test if exists;
12create dataverse test;
13use dataverse test;
14
15write output to nc1:"rttest/btree-index_btree-secondary-36.adm";
16
17create type TestType as open {
18 id : int32,
19 fname : string,
20 lname : string
21}
22
23// create internal dataset
24create dataset testdst(TestType) partitioned by key id;
25
26// create secondary index
27create index sec_Idx on testdst(fname,lname);
28
29// load valid data with fname and lname entries
30
31load dataset testdst
32using "edu.uci.ics.asterix.external.dataset.adapter.NCFileSystemAdapter"
33(("path"="nc1://data/id-fn-ln.adm"),("format"="delimited-text"),("delimiter"="|"));
34
35// Query the data that was loaded above.
36
37for $emp in dataset('testdst')
38where $emp.fname = "Julio"
39return $emp