blob: 5113acac3b00e44192111aa39a79d465b443b53d [file] [log] [blame]
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +00001/*
Ildar Absalyamovc70c06a2014-11-11 16:37:04 -08002 * Description : This test is intended to verify that the primary BTree index is used
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +00003 * : in the optimized query plan.
4 * Expected Result : Success
5 * Date : 13th Aug 2012
6 */
7
8drop dataverse test if exists;
9create dataverse test;
10use dataverse test;
11
Ildar Absalyamovc70c06a2014-11-11 16:37:04 -080012write output to nc1:"rttest/btree-index_btree-primary-58.adm";
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +000013
14create type TestType as open {
15 id : int32,
16 fname : string,
17 lname : string
18}
Ildar Absalyamovc70c06a2014-11-11 16:37:04 -080019
ramangrover29669d8f62013-02-11 06:03:32 +000020create dataset testdst(TestType) primary key id;
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +000021
22create index sec_Idx on testdst(fname);
23
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +000024for $emp in dataset('testdst')
Ildar Absalyamovc70c06a2014-11-11 16:37:04 -080025where $emp.fname > "Neil" and $emp.fname < "Roger"
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +000026return $emp