blob: c12fcf5d4a503bc3fb5e27ad39d6b40902f5760c [file] [log] [blame]
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +00001/*
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +00002 * Description : This test is intended to verify that the primary BTree index is NOT used
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +00003 * : in the optimized query plan.
4 * Expected Result : Success
5 * Date : 13th Aug 2012
6 */
7
8// This is a Negative test - prefix search, BTree index should not be used in the plan.
9
10drop dataverse test if exists;
11create dataverse test;
12use dataverse test;
13
14write output to nc1:"rttest/btree-index_btree-primary-02.adm";
15
16create type TestType as open {
17 fname : string,
18 lname : string
19}
20
21// create internal dataset with primary index defined on fname,lname fields
22create dataset testdst(TestType) partitioned by key fname,lname;
23
24// load valid data with fname and lname entries
25
26load dataset testdst
27using "edu.uci.ics.asterix.external.dataset.adapter.NCFileSystemAdapter"
28(("path"="nc1://data/fn-ln.adm"),("format"="delimited-text"),("delimiter"="|"));
29
30// Query the data that was loaded above.
31
32for $emp in dataset('testdst')
33where $emp.fname >= "Susan"
34return $emp