blob: 1ae840eeff2c16533f14b26caf7be7e929da6491 [file] [log] [blame]
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +00001/*
2 * Description : BTree Index verification (usage) test
3 * : This test is intended to verify that the secondary BTree index is NOT used
4 * Expected Result : Success
5 * Date : 13th Aug 2012
6 */
7
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
10
11drop dataverse test if exists;
12create dataverse test;
13use dataverse test;
14
15write output to nc1:"rttest/btree-index_btree-secondary-37.adm";
16
17create type TestType as open {
18 id : int32,
19 fname : string,
20 lname : string
21}
22
23// create internal dataset
24create dataset testdst(TestType) partitioned by key id;
25
26// create secondary index
27create index sec_Idx on testdst(fname,lname);
28
29// load valid data with fname and lname entries
30
31load dataset testdst
32using "edu.uci.ics.asterix.external.dataset.adapter.NCFileSystemAdapter"
33(("path"="nc1://data/id-fn-ln.adm"),("format"="delimited-text"),("delimiter"="|"));
34
35// Query the data that was loaded above.
36
37for $emp in dataset('testdst')
38where $emp.lname = "Kim"
39return $emp