blob: a511c02f699b36c94882a184052cf232f602a7de [file] [log] [blame]
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +00001/*
2 * Description : BTree Index verification (usage) test
Ildar Absalyamov04b2b772015-03-19 15:09:51 -07003 * : This test is intended to verify that the primary BTree index is NOT used
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +00004 * : in the optimized query plan.
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +00005 * 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-primary-10.adm";
14
15create type TestType as open {
16 fname : string,
17 lname : string
18}
19
ramangrover29669d8f62013-02-11 06:03:32 +000020create dataset testdst(TestType) primary key fname,lname;
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +000021
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +000022for $emp in dataset('testdst')
23where $emp.fname > "Alex" and $emp.lname < "Zach"
24return $emp