blob: fd0717dedd70c35076452213d8c14ea58588c431 [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 used in the optimized query plan
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +00003 * Expected Result : Success
4 * Date : 13th Aug 2012
5 */
6
7drop dataverse test if exists;
8create dataverse test;
9use dataverse test;
10
11write output to nc1:"rttest/btree-index_btree-primary-08.adm";
12
13create type TestType as open {
14 fname : string,
15 lname : string
16}
17
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +000018create dataset testdst(TestType) partitioned by key fname,lname;
19
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +000020load dataset testdst
21using "edu.uci.ics.asterix.external.dataset.adapter.NCFileSystemAdapter"
22(("path"="nc1://data/fn-ln.adm"),("format"="delimited-text"),("delimiter"="|"));
23
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +000024for $emp in dataset('testdst')
25where $emp.fname = "Young Seok" and $emp.lname = "Kim"
26return $emp