| * Testcase Name : open-closed-17.aql |
| * Description : Test open type dataset by inserting additional data along with inserting data for existing fields. |
| drop dataverse test if exists; |
| create type Schema as open{ |
| create dataset tdtst(Schema) partitioned by key id_32; |
| insert into dataset tdtst( |
| let $f1:=time("10:50:56:200+05:00") |
| let $f2:=datetime("2011-12-31T14:00:00-10:00") |
| let $f3:=point("100.0,200.0") |
| "mydata":{{"this is my additional data"}} |
| write output to nc1:"rttest/open-closed_open-closed-17.adm"; |
| for $l in dataset('tdtst') |