blob: e9ccb8706ad1ab3c4b88d76a5835c726be5e9be8 [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 primary BTree index is used
4 * : in the optimized query plan.
5 * Expected Result : Success
6 * Date : 5th Feb 2013
7 */
8
9drop dataverse test if exists;
10create dataverse test;
11use dataverse test;
12
13write output to nc1:"rttest/btree-index_btree-primary-27.adm";
14
15create type TestType as open {
16 fname : string,
17 lname : string
18}
19
kisskysf4c33242013-03-13 06:11:01 +000020create dataset testdst(TestType) primary key fname,lname;
salsubaiee3c59d762013-02-06 09:10:05 +000021
22for $emp in dataset('testdst')
23where $emp.fname > "Craig" and $emp.lname > "Kevin" and $emp.fname <= "Mary" and $emp.lname < "Tomes"
24return $emp