blob: c32df0f0cbc22fb4ea751eeb9925b141af5bd030 [file] [log] [blame]
Ildar Absalyamovc70c06a2014-11-11 16:37:04 -08001/*
2 * Description : This test is intended to verify that the secondary BTree index is used
3 * : 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
12write output to nc1:"rttest/btree-index_btree-secondary-60.adm";
13
14create type TestType as open {
15 id : int32,
16 fname : string,
17 lname : string
18}
19
20create dataset testdst(TestType) primary key id;
21
22create index sec_Idx on testdst(fname);
23
24for $emp in dataset('testdst')
25where $emp.fname = "Max"
26return $emp