blob: 33b40b2a3c3447a41240eeb1e679c9d8e5984f81 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
DROP DATAVERSE tpch IF EXISTS;
CREATE DATAVERSE tpch;
USE tpch;
CREATE TYPE LineItemType AS {
l_orderkey : bigint,
l_linenumber : bigint
}
CREATE DATASET LineItem(LineItemType) PRIMARY KEY l_orderkey,l_linenumber;
-- Tests that the query does not do a complete sort over the data.
SELECT *
FROM LineItem l
ORDER BY l.l_returnflag, l.l_linestatus
LIMIT -1;
DROP DATAVERSE tpch;