blob: 4761469853829eea8598016b78b605f4b4262ce9 [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
Ildar Absalyamovc70c06a2014-11-11 16:37:04 -08006 * Date : 11th Nov 2014
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +00007 */
8
Ildar Absalyamovc70c06a2014-11-11 16:37:04 -08009// Positive test - prefix search
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000010
11drop dataverse test if exists;
12create dataverse test;
13use dataverse test;
14
Ildar Absalyamovc70c06a2014-11-11 16:37:04 -080015write output to nc1:"rttest/btree-index_btree-secondary-62.adm";
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000016
17create type TestType as open {
18 id : int32,
19 fname : string,
20 lname : string
21}
22
ramangrover29669d8f62013-02-11 06:03:32 +000023create dataset testdst(TestType) primary key id;
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000024
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000025create index sec_Idx on testdst(fname,lname);
26
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000027for $emp in dataset('testdst')
Ildar Absalyamovc70c06a2014-11-11 16:37:04 -080028where $emp.fname = "Julio" and $emp.lname > "Xu"
khfaraaz82@gmail.com552e4c82012-08-19 07:37:50 +000029return $emp