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 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 | |
| 8 | drop dataverse test if exists; |
| 9 | create dataverse test; |
| 10 | use dataverse test; |
| 11 | |
| 12 | write output to nc1:"rttest/btree-index_btree-secondary-40.adm"; |
| 13 | |
| 14 | create type TestType as open { |
| 15 | id : int32, |
| 16 | fname : string, |
| 17 | lname : string |
| 18 | } |
| 19 | |
ramangrover29 | 669d8f6 | 2013-02-11 06:03:32 +0000 | [diff] [blame] | 20 | create dataset testdst(TestType) primary key id; |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 21 | |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 22 | create index sec_Idx on testdst(fname,lname); |
| 23 | |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 24 | for $emp in dataset('testdst') |
Ildar Absalyamov | c70c06a | 2014-11-11 16:37:04 -0800 | [diff] [blame] | 25 | where $emp.fname = "Young Seok" and $emp.lname = "Kim" |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 26 | return $emp |