blob: 32a6b060f39a2cd88237173ea3f4f20b099d3baa [file] [log] [blame]
/*
* Description : Notice the query hint to avoid using any secondary index to evaluate the predicate in the where clause
* Expected Res : Success
* Date : 21th December 2013
*/
drop dataverse test if exists;
create dataverse test;
use dataverse test;
write output to nc1:"rttest/btree-index_btree-secondary-57.adm";
create type TestType as open {
id : int32,
fname : string,
lname : string
}
create dataset testdst(TestType) primary key id;
create index sec_Idx on testdst(fname);
for $emp in dataset('testdst')
/*+ skip-index */
where $emp.fname >= "Max" and $emp.fname <= "Roger"
return $emp