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 |
khfaraaz82@gmail.com | 71e7148 | 2012-08-18 00:25:07 +0000 | [diff] [blame] | 3 | * : in the optimized query plan. |
| 4 | * Expected Result : Success |
| 5 | * Date : 13th Aug 2012 |
| 6 | */ |
| 7 | |
| 8 | // Negative test - BTree index should NOT be used in query plan |
| 9 | |
| 10 | drop dataverse test if exists; |
| 11 | create dataverse test; |
| 12 | use dataverse test; |
| 13 | |
| 14 | write output to nc1:"rttest/btree-index_btree-primary-05.adm"; |
| 15 | |
| 16 | create type TestType as open { |
| 17 | fname : string, |
| 18 | lname : string |
| 19 | } |
| 20 | |
| 21 | // create internal dataset with primary index defined on fname,lname fields |
| 22 | create dataset testdst(TestType) partitioned by key fname,lname; |
| 23 | |
khfaraaz82@gmail.com | 71e7148 | 2012-08-18 00:25:07 +0000 | [diff] [blame] | 24 | for $emp in dataset('testdst') |
| 25 | where $emp.fname != "Max" |
| 26 | return $emp |