blob: 745562d38cdfb39f7740bb21dc6523b6bfc45dab [file] [log] [blame]
use dataverse demo1112;
declare type ExampleType as open {
id: int32,
name: string,
age: float,
salary: double,
married: boolean,
interests: {{string}},
children: [string],
address: AddressType,
dob: date,
time: time,
datetime: datetime,
duration: duration,
location2d: point,
location3d: point3d,
line: line,
polygon: polygon
// ?
// binary
// union
}
declare type AddressType as open {
number: int32,
street: string,
city: string
}
declare nodegroup group1 on nc1, nc2;
set format "edu.uci.ics.asterix.runtime.formats.nontagged.NonTaggedDataFormat";
declare dataset All(ExampleType)
primary key id on group1;
load dataset All from nc1:"/home/yasser/Dropbox/Research/data/allData.json";