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 |
Abdullah Alamoudi | d9eddd0 | 2014-10-23 17:38:19 +0300 | [diff] [blame] | 3 | * : This test is intended to verify that the secondary BTree index is used |
khfaraaz82@gmail.com | c9db98e | 2012-08-21 00:08:58 +0000 | [diff] [blame] | 4 | * : in the optimized query plan. |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 5 | * Expected Result : Success |
| 6 | * Date : 13th Aug 2012 |
| 7 | */ |
| 8 | |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 9 | drop dataverse test if exists; |
| 10 | create dataverse test; |
| 11 | use dataverse test; |
| 12 | |
Ildar Absalyamov | c70c06a | 2014-11-11 16:37:04 -0800 | [diff] [blame] | 13 | write output to nc1:"rttest/btree-index_btree-secondary-61.adm"; |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 14 | |
| 15 | create type TestType as open { |
| 16 | id : int32, |
| 17 | fname : string, |
| 18 | lname : string |
| 19 | } |
| 20 | |
Ildar Absalyamov | c70c06a | 2014-11-11 16:37:04 -0800 | [diff] [blame] | 21 | // create internal dataset |
| 22 | create dataset testdst(TestType) primary key id; |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 23 | |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 24 | create index sec_Idx on testdst(fname,lname); |
| 25 | |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 26 | for $emp in dataset('testdst') |
Ildar Absalyamov | c70c06a | 2014-11-11 16:37:04 -0800 | [diff] [blame] | 27 | where $emp.fname > "Craig" and $emp.lname > "Kevin" and $emp.fname <= "Mary" and $emp.lname < "Tomes" |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 28 | return $emp |