blob: 0ec31aa7eb5b9a58f61c0b2f1f350eed3d2aaaf6 [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 primary 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-primary-14.adm";
14
15create type TestType as open {
16 fname : string,
17 lname : string
18}
19
20create dataset testdst(TestType) partitioned by key fname,lname;
21
22for $emp in dataset('testdst')
23where $emp.fname >= "Michael" and $emp.lname <= "Xu"
24return $emp