blob: 2baec2f117018cc168d1998a8373f7c8a02e905a [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 NOT used
4 * : in the optimized query plan.
5 * Expected Result : Success
6 * Date : 13th Aug 2012
7 */
8
9// This is a Negative test - prefix search, BTree index should not be used in the plan.
10
11drop dataverse test if exists;
12create dataverse test;
13use dataverse test;
14
15write output to nc1:"rttest/btree-index_btree-secondary-32.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 >= "Susan"
39return $emp