blob: d4e838172ed7c45608d3e416c17b3a2374ca44a5 [file] [log] [blame]
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +00001/*
Ildar Absalyamovc70c06a2014-11-11 16:37:04 -08002 * Description : BTree Index verification test
3 * : This test is intended to verify that the secondary BTree index is used
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +00004 * : in the optimized query plan.
5 * 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-secondary-53.adm";
14
15create type TestType as open {
16 id : int32,
17 fname : string,
18 lname : string
19}
20
ramangrover29669d8f62013-02-11 06:03:32 +000021create dataset testdst(TestType) primary key id;
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +000022
Ildar Absalyamovc70c06a2014-11-11 16:37:04 -080023create index sec_Idx on testdst(fname,lname);
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +000024
Ildar Absalyamovc70c06a2014-11-11 16:37:04 -080025for $emp in dataset('testdst')
26where $emp.fname >= "Craig" and $emp.lname <= "Kevin" and $emp.fname <= "Mary" and $emp.lname >= "Tomes"
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +000027return $emp