blob: bc535372fa476ee8f4b795ad2b9f1d88cbbc9265 [file] [log] [blame]
Ildar Absalyamovc70c06a2014-11-11 16:37:04 -08001/*
Ian Maxon857dc132015-09-25 17:13:19 -07002 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19/*
Ildar Absalyamovc70c06a2014-11-11 16:37:04 -080020 * Description : BTree Index verification test
21 * : This test is intended to verify that the primary BTree index is used
22 * : in the optimized query plan.
23 * Expected Result : Success
24 * Date : 11th Nov 2014
25 */
26
27// Positive test - prefix search
28
29drop dataverse test if exists;
30create dataverse test;
31use dataverse test;
32
33write output to nc1:"rttest/btree-index_btree-primary-32.adm";
34
35create type TestType as open {
36 fname : string,
37 lname : string
38}
39
40create dataset testdst(TestType) primary key fname,lname;
41
42for $emp in dataset('testdst')
43where $emp.fname < "Julio" and $emp.lname = "Xu"
44return $emp