blob: 9d1024ff68949db0baf7cc58ccdce7f37d8486ff [file] [log] [blame]
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +00001/*
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +00002 * Description : BTree Index verification test
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +00003 * : This test is intended to verify that the secondary BTree index is used
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +00004 * : in the optimized query plan.
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +00005 * Expected Result : Success
6 * Date : 13th Aug 2012
7 */
8
9drop dataverse test if exists;
10create dataverse test;
11use dataverse test;
12
13write output to nc1:"rttest/btree-index_btree-secondary-45.adm";
14
15create type TestType as open {
16 id : int32,
17 fname : string,
18 lname : string
19}
20
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000021create dataset testdst(TestType) partitioned by key id;
22
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000023create index sec_Idx on testdst(fname,lname);
24
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000025load dataset testdst
26using "edu.uci.ics.asterix.external.dataset.adapter.NCFileSystemAdapter"
27(("path"="nc1://data/id-fn-ln.adm"),("format"="delimited-text"),("delimiter"="|"));
28
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000029for $emp in dataset('testdst')
30where $emp.fname > "Craig" and $emp.lname > "Kevin" and $emp.fname < "Mary" and $emp.lname < "Tomes"
31return $emp