blob: 05a69d2cbf08eb02c7512b9a70c198c78e47d937 [file] [log] [blame]
vinayakb5ee049d2013-04-06 21:21:29 +00001/*
2 * Description : BTree Index verification test
3 * : This test is intended to verify that the primary 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-primary-26.adm";
14
15create type TestType as open {
16 fname : string,
17 lname : string
18}
19
20create dataset testdst(TestType) primary key fname;
21
22for $emp in dataset('testdst')
23where $emp.fname >= "Max" and $emp.fname <= "Roger"
24return $emp