blob: ba5de37e57b3a470ec6afc4e551476ac425d9ab4 [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-26.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 +000022for $emp in dataset('testdst')
23where $emp.fname >= "Max" and $emp.fname <= "Roger"
24return $emp