blob: f20b5a9cbe76fad9f9f227c50c90f0795ec7b89d [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 secondary BTree index is NOT used
4 * : in the optimized query plan.
5 * Expected Result : Success
6 * Date : 13th Aug 2012
7 */
8
9// Negative test - prefix search, BTree index should not be used in query plan
10
11drop dataverse test if exists;
12create dataverse test;
13use dataverse test;
14
15write output to nc1:"rttest/btree-index_btree-secondary-34.adm";
16
17create type TestType as open {
18 id : int32,
19 fname : string,
20 lname : string
21}
22
23create dataset testdst(TestType) primary key id;
24
25create index sec_Idx on testdst(fname,lname);
26
27for $emp in dataset('testdst')
28where $emp.fname <= "Vanpatten"
29return $emp