blob: 740cca6068726ab7ebaccc1e9a2101ac06ffe331 [file] [log] [blame]
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +00001/*
2 * Description : BTree Index verification (usage) test
3 * : This test is intended to verify that the primary BTree index is NOT used
khfaraaz82@gmail.comc9db98e2012-08-21 00:08:58 +00004 * : in the optimized query plan.
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +00005 * Expected Result : Success
6 * Date : 13th Aug 2012
7 */
8
9// Negative test - prefix search
10
11drop dataverse test if exists;
12create dataverse test;
13use dataverse test;
14
15write output to nc1:"rttest/btree-index_btree-primary-12.adm";
16
17create type TestType as open {
18 fname : string,
19 lname : string
20}
21
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +000022create 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 > "Allan" and $emp.lname = "Xu"
26return $emp