khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 1 | /* |
khfaraaz82@gmail.com | c9db98e | 2012-08-21 00:08:58 +0000 | [diff] [blame] | 2 | * Description : BTree Index verification test |
Ildar Absalyamov | c70c06a | 2014-11-11 16:37:04 -0800 | [diff] [blame] | 3 | * : This test is intended to verify that the secondary BTree index is NOT used in the optimized query plan. |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 4 | * Expected Result : Success |
| 5 | * Date : 13th Aug 2012 |
| 6 | */ |
| 7 | |
Ildar Absalyamov | c70c06a | 2014-11-11 16:37:04 -0800 | [diff] [blame] | 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 |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 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-39.adm"; |
| 16 | |
| 17 | create type TestType as open { |
| 18 | id : int32, |
| 19 | fname : string, |
| 20 | lname : string |
| 21 | } |
| 22 | |
ramangrover29 | 669d8f6 | 2013-02-11 06:03:32 +0000 | [diff] [blame] | 23 | create dataset testdst(TestType) primary key id; |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 24 | |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 25 | create index sec_Idx on testdst(fname,lname); |
| 26 | |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 27 | for $emp in dataset('testdst') |
Ildar Absalyamov | c70c06a | 2014-11-11 16:37:04 -0800 | [diff] [blame] | 28 | where $emp.lname = "Kim" |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 29 | return $emp |