khfaraaz82@gmail.com | 71e7148 | 2012-08-18 00:25:07 +0000 | [diff] [blame] | 1 | /* |
khfaraaz82@gmail.com | c9db98e | 2012-08-21 00:08:58 +0000 | [diff] [blame] | 2 | * Description : This test is intended to verify that the primary BTree index is NOT used |
| 3 | * : in the optimized query plan. |
khfaraaz82@gmail.com | 71e7148 | 2012-08-18 00:25:07 +0000 | [diff] [blame] | 4 | * 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 | |
| 11 | drop dataverse test if exists; |
| 12 | create dataverse test; |
| 13 | use dataverse test; |
| 14 | |
| 15 | write output to nc1:"rttest/btree-index_btree-primary-07.adm"; |
| 16 | |
| 17 | create type TestType as open { |
| 18 | fname : string, |
| 19 | lname : string |
| 20 | } |
| 21 | |
| 22 | // create internal dataset with primary index defined on fname,lname fields |
| 23 | create dataset testdst(TestType) partitioned by key fname,lname; |
| 24 | |
khfaraaz82@gmail.com | 71e7148 | 2012-08-18 00:25:07 +0000 | [diff] [blame] | 25 | for $emp in dataset('testdst') |
| 26 | where $emp.lname = "Kim" |
| 27 | return $emp |