blob: 9919457460970f2af0ee24411a9f11e980a37462 [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 +000020for $emp in dataset('testdst')
21where $emp.fname = "Young Seok" and $emp.lname = "Kim"
22return $emp