blob: fbcdd50715677cf87cad432702e598542dcf6263 [file] [log] [blame]
vinayakb5ee049d2013-04-06 21:21:29 +00001/*
2 * Description : This test is intended to verify that the primary BTree index is NOT used
3 * : in the optimized query plan.
4 * Expected Result : Success
5 * Date : 13th Aug 2012
6 */
7
8// This is a Negative test - prefix search, BTree index should not be used in the plan.
9
10drop dataverse test if exists;
11create dataverse test;
12use dataverse test;
13
14write output to nc1:"rttest/btree-index_btree-primary-02.adm";
15
16create type TestType as open {
17 fname : string,
18 lname : string
19}
20
21// create internal dataset with primary index defined on fname,lname fields
22create dataset testdst(TestType) primary key fname,lname;
23
24for $emp in dataset('testdst')
25where $emp.fname >= "Susan"
26return $emp