blob: 2b635a55d06654aec970575dd9bb8978c0e95c25 [file] [log] [blame]
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +00001/*
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +00002 * Description : This test is intended to verify that the primary BTree index is NOT used
3 * : in the optimized query plan.
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +00004 * Expected Result : Success
5 * Date : 13th Aug 2012
6 */
7
8// THE BTREE INDEX IN THIS CASE SHOULD NOT BE PICKED UP!!!!
9// Verify that the optimized query plan does not have the BTree search
10
11drop dataverse test if exists;
12create dataverse test;
13use dataverse test;
14
15write output to nc1:"rttest/btree-index_btree-primary-07.adm";
16
17create type TestType as open {
18 fname : string,
19 lname : string
20}
21
22// create internal dataset with primary index defined on fname,lname fields
ramangrover29669d8f62013-02-11 06:03:32 +000023create dataset testdst(TestType) primary key fname,lname;
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +000024
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +000025for $emp in dataset('testdst')
26where $emp.lname = "Kim"
27return $emp