blob: 04232903c83d8f6c1c3610f0a2d40327162bccbf [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
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +00003 * : in the optimized query plan.
4 * Expected Result : Success
5 * Date : 13th Aug 2012
6 */
7
8// Negative test - BTree index should NOT be used in query plan
9
10drop dataverse test if exists;
11create dataverse test;
12use dataverse test;
13
14write output to nc1:"rttest/btree-index_btree-primary-05.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) partitioned by key fname,lname;
23
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +000024for $emp in dataset('testdst')
25where $emp.fname != "Max"
26return $emp