Added asterix project

git-svn-id: https://asterixdb.googlecode.com/svn/trunk/asterix@12 eaa15691-b419-025a-1212-ee371bd00084
diff --git a/asterix-app/src/test/resources/demo0927/rainbow/01-load-cust.aql b/asterix-app/src/test/resources/demo0927/rainbow/01-load-cust.aql
new file mode 100644
index 0000000..74502a0
--- /dev/null
+++ b/asterix-app/src/test/resources/demo0927/rainbow/01-load-cust.aql
@@ -0,0 +1,26 @@
+use dataverse demo0927;
+
+declare type CustomerType as closed {
+  cid: int32, 
+  name: string,
+  age: int32?,
+  address: AddressType?,
+  lastorder: {
+    oid: int32,
+    total: float
+  }
+}
+
+declare type AddressType as closed {
+  number: int32, 
+  street: string,
+  city: string
+}
+
+declare nodegroup group1 on rainbow-01, rainbow-02, rainbow-03, rainbow-04, rainbow-05;
+
+declare dataset Customers(CustomerType) 
+  partitioned by key cid on group1;
+
+load dataset Customers from rainbow-01:"/home/hyracks/demo-data/customerData.json";
+//  delete dataset Customers;
\ No newline at end of file