blob: 0c71f540e8b7891d68227f0bec03f6e1b9bcf1b5 [file] [log] [blame]
create dataverse testdv2;
use dataverse testdv2;
create type testtype as open {
id: string,
name: string
}
create dataset testds(testtype) partitioned by key id;
insert into dataset testds (
{ "id": "001", "name": "Person Three", "hobbies": {{"scuba", "music"}}}
);
write output to nc1:"rttest/dml_opentype-insert.adm";
for $d in dataset("testds")
return $d