blob: 3f844ee05660abaf56572e67f63c320cea57b693 [file] [log] [blame]
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +00001/*
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +00002 * Description : BTree Index verification test
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +00003 * : This test is intended to verify that the secondary BTree index is used in the optimized query plan
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +00004 * Expected Result : Success
5 * Date : 13th Aug 2012
6 */
7
8drop dataverse test if exists;
9create dataverse test;
10use dataverse test;
11
12write output to nc1:"rttest/btree-index_btree-secondary-38.adm";
13
14create type TestType as open {
15 id : int32,
16 fname : string,
17 lname : string
18}
19
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000020create dataset testdst(TestType) partitioned by key id;
21
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000022create index sec_Idx on testdst(fname,lname);
23
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000024for $emp in dataset('testdst')
25where $emp.fname = "Young Seok" and $emp.lname = "Kim"
26return $emp