blob: 337072e4cd803011412282b630b7933b74d94f54 [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 used in the optimized query plan
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +00003 * Expected Result : Success
4 * Date : 13th Aug 2012
5 */
6
7drop dataverse test if exists;
8create dataverse test;
9use dataverse test;
10
11write output to nc1:"rttest/btree-index_btree-primary-08.adm";
12
13create type TestType as open {
14 fname : string,
15 lname : string
16}
17
ramangrover29669d8f62013-02-11 06:03:32 +000018create dataset testdst(TestType) primary key fname,lname;
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +000019
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +000020for $emp in dataset('testdst')
21where $emp.fname = "Young Seok" and $emp.lname = "Kim"
22return $emp