blob: 2680cf81f764866e5d61ade608157c08f27a4bb2 [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 TestDataverse if exists;
create dataverse TestDataverse;
use TestDataverse;
create type TestDataverse.TestType as
{
id : int64,
int8 : int8,
int16 : int16,
int32 : int32,
int64 : int64,
float : float,
double : double,
int8_u : {{int8}}?,
int8_o : [int8]?,
int16_u : {{int16}}?,
int16_o : [int16]?,
int32_u : {{int32}}?,
int32_o : [int32]?,
int64_u : {{int64}}?,
int64_o : [int64]?,
float_u : {{float}}?,
float_o : [float]?,
double_u : {{double}}?,
double_o : [double]?
}
create dataset TestSet(TestType) primary key id;