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 |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 3 | * : This test is intended to verify that the secondary BTree index is NOT used |
| 4 | * : in the optimized query plan. |
| 5 | * Expected Result : Success |
| 6 | * Date : 13th Aug 2012 |
| 7 | */ |
| 8 | |
| 9 | // Negative test - BTree index should NOT be used in 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-35.adm"; |
| 16 | |
| 17 | create type TestType as open { |
| 18 | id : int32, |
| 19 | fname : string, |
| 20 | lname : string |
| 21 | } |
| 22 | |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 23 | create dataset testdst(TestType) partitioned by key id; |
| 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 | load dataset testdst |
| 28 | using "edu.uci.ics.asterix.external.dataset.adapter.NCFileSystemAdapter" |
| 29 | (("path"="nc1://data/id-fn-ln.adm"),("format"="delimited-text"),("delimiter"="|")); |
| 30 | |
khfaraaz82@gmail.com | 552e4c8 | 2012-08-19 07:37:50 +0000 | [diff] [blame] | 31 | for $emp in dataset('testdst') |
| 32 | where $emp.fname != "Max" |
| 33 | return $emp |