blob: 6d023790264dbf9914deb2e88a90e1a39a9aa9d3 [file] [log] [blame]
khfaraaz82@gmail.com28b34432012-08-20 19:26:52 +00001/*
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +00002 * Description : BTree Index verification test
khfaraaz82@gmail.com28b34432012-08-20 19:26:52 +00003 * : This test is intended to verify that the primary BTree index is used
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +00004 * : in the optimized query plan.
khfaraaz82@gmail.com28b34432012-08-20 19:26:52 +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-primary-22.adm";
14
15create type TestType as open {
16 fname : string,
17 lname : string
18}
19
khfaraaz82@gmail.com28b34432012-08-20 19:26:52 +000020create dataset testdst(TestType) partitioned by key fname;
21
khfaraaz82@gmail.com28b34432012-08-20 19:26:52 +000022load dataset testdst
23using "edu.uci.ics.asterix.external.dataset.adapter.NCFileSystemAdapter"
24(("path"="nc1://data/fn-ln.adm"),("format"="delimited-text"),("delimiter"="|"));
25
khfaraaz82@gmail.com28b34432012-08-20 19:26:52 +000026for $emp in dataset('testdst')
27where $emp.fname >= "Sofia"
28return $emp