blob: f75f3de8f9c6c08cb29718f3a8fb784558ebba8b [file] [log] [blame]
jarodwencbbab142013-02-01 07:56:46 +00001/*
2 * Description : BTree Index verification 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
9drop dataverse test if exists;
10create dataverse test;
11use dataverse test;
12
13write output to nc1:"rttest/btree-index_btree-secondary-44.adm";
14
15create type TestType as open {
16 id : int32,
17 fname : string,
18 lname : string
19}
20
21create dataset testdst(TestType) partitioned by key id;
22
23create index sec_Idx on testdst(fname,lname);
24
25for $emp in dataset('testdst')
26where $emp.fname >= "Michael" and $emp.lname <= "Xu"
27return $emp