blob: 568aca5d6ee9df4adb38331491f3b4c31ff0fb6f [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.
*/
/*
* Test case name : open-closed-21.aql
* Description : Insert into open type internal dataset by querying another open type internal dataset
* : In this case source dataset has (n+n) fields and the target dataset has only 1 field, but has no intial records in it.
* Success : Yes
* Date : 29 April 2012
*/
drop dataverse test if exists;
create dataverse test;
use test;
create type test.TestType as
{
id : int32
}
create dataset dtst01(TestType) primary key id;
create type test.Emp as
{
id : int32,
name : string,
age : int8,
sex : string,
dob : date
}
create dataset employee(Emp) primary key id;