blob: 2b0a300f63ad76d898b788664f964104bca18f24 [file] [log] [blame]
salsubaiee3c59d762013-02-06 09:10:05 +00001/*
2 * Description : BTree Index verification test
3 * : This test is intended to verify that the secondary BTree index is 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-49.adm";
14
15create type TestType as open {
16 id : int32,
17 fname : string,
18 lname : string
19}
20
21// create internal dataset
kisskysf4c33242013-03-13 06:11:01 +000022create dataset testdst(TestType) primary key id;
salsubaiee3c59d762013-02-06 09:10:05 +000023
24create index sec_Idx on testdst(fname,lname);
25
26for $emp in dataset('testdst')
27where $emp.fname > "Craig" and $emp.lname > "Kevin" and $emp.fname <= "Mary" and $emp.lname < "Tomes"
28return $emp