blob: 384a6483e3ad063d4803643e0a8a66b818fd9b01 [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
Abdullah Alamoudid9eddd02014-10-23 17:38:19 +03003 * : 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.
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +00005 * Expected Result : Success
6 * Date : 13th Aug 2012
7 */
8
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +00009drop dataverse test if exists;
10create dataverse test;
11use dataverse test;
12
Ildar Absalyamovc70c06a2014-11-11 16:37:04 -080013write output to nc1:"rttest/btree-index_btree-secondary-61.adm";
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000014
15create type TestType as open {
16 id : int32,
17 fname : string,
18 lname : string
19}
20
Ildar Absalyamovc70c06a2014-11-11 16:37:04 -080021// create internal dataset
22create dataset testdst(TestType) primary key id;
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000023
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000024create index sec_Idx on testdst(fname,lname);
25
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000026for $emp in dataset('testdst')
Ildar Absalyamovc70c06a2014-11-11 16:37:04 -080027where $emp.fname > "Craig" and $emp.lname > "Kevin" and $emp.fname <= "Mary" and $emp.lname < "Tomes"
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000028return $emp