blob: c6ed34ef440ffccdd964b5c6482d05cc1217d6b6 [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.
*/
/*
* Description : Testing get-record-fields under different queries.
* Expected Res : Success
* Date : 04 Jun 2015
*/
drop dataverse TinySocial if exists;
create dataverse TinySocial;
use TinySocial;
create type TinySocial.TwitterUserType as
{
`screen-name` : string,
lang : string,
friends_count : int64,
statuses_count : int64
}
create type TinySocial.TweetMessageType as
closed {
tweetid : string,
user : TwitterUserType,
`sender-location` : point?,
`send-time` : datetime,
`referred-topics` : {{string}},
`message-text` : string
}
create type TinySocial.EmploymentType as
{
`organization-name` : string,
`start-date` : date,
`end-date` : date?
}
create type TinySocial.FacebookUserType as
closed {
id : int64,
alias : string,
name : string,
`user-since` : datetime,
`friend-ids` : {{int64}},
employment : [EmploymentType]
}
create type TinySocial.FacebookMessageType as
closed {
`message-id` : int64,
`author-id` : int64,
`in-response-to` : int64?,
`sender-location` : point?,
message : string
}
create type TinySocial.TwitterUserAlternateType as
{
`screen-name` : string,
lang : string,
friends_count : int64,
statuses_count : int64
}
create type TinySocial.TweetMessageAlternateType as
closed {
tweetid : string,
`sender-location` : point?,
`send-time` : datetime,
`referred-topics` : {{string}},
`message-text` : string
}
create type TinySocial.EmploymentAlternateType as
{
`organization-name` : string,
`start-date` : date,
`end-date` : date?
}
create type TinySocial.FacebookUserAlternateType as
closed {
id : int64,
alias : string,
name : string,
`friend-ids` : {{int64}},
`user-since` : datetime
}
create type TinySocial.FacebookMessageAlternateType as
closed {
`message-id` : int64,
`author-id` : int64,
`in-response-to` : int64?,
`sender-location` : point?,
message : string
}