blob: 73133c2c4148c12f636d241a8847358c84c5e616 [file] [log] [blame]
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +00001/*
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +00002 * Description : BTree Index verification test
3 * : This test is intended to verify that the secondary BTree index is NOT used in the optimized query plan.
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +00004 * Expected Result : Success
5 * Date : 13th Aug 2012
6 */
7
8// THE BTREE INDEX IN THIS CASE SHOULD NOT BE PICKED UP!!!!
9// Verify that the optimized query plan does not have the BTree search
10
11drop dataverse test if exists;
12create dataverse test;
13use dataverse test;
14
15write output to nc1:"rttest/btree-index_btree-secondary-37.adm";
16
17create type TestType as open {
18 id : int32,
19 fname : string,
20 lname : string
21}
22
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000023create dataset testdst(TestType) partitioned by key id;
24
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000025create index sec_Idx on testdst(fname,lname);
26
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000027for $emp in dataset('testdst')
28where $emp.lname = "Kim"
29return $emp