vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame^] | 1 | /* |
| 2 | * Description : BTree Index verification test |
| 3 | * : This test is intended to verify that the secondary BTree index is 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 the query plan. |
| 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-secondary-36.adm"; |
| 16 | |
| 17 | create type TestType as open { |
| 18 | id : int32, |
| 19 | fname : string, |
| 20 | lname : string |
| 21 | } |
| 22 | |
| 23 | create dataset testdst(TestType) primary key id; |
| 24 | |
| 25 | create index sec_Idx on testdst(fname,lname); |
| 26 | |
| 27 | for $emp in dataset('testdst') |
| 28 | where $emp.fname = "Julio" |
| 29 | return $emp |