blob: 5f975c9413be7e300397ce651b814c2a1ae89969 [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 * : in the optimized query plan for this predicate.
5 * Expected Result : Success
6 * Date : 13th Aug 2012
7 */
8
9// Please note this is a Negative test and the BTree index should NOT be used in the plan.
10
11drop dataverse test if exists;
12create dataverse test;
13use dataverse test;
14
15write output to nc1:"rttest/btree-index_btree-primary-31.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 id, 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.fname > "Roger"
39return $emp