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/demo_aql/local/05-count-param1.aql b/asterix-app/src/test/resources/demo_aql/local/05-count-param1.aql
new file mode 100644
index 0000000..02263c4
--- /dev/null
+++ b/asterix-app/src/test/resources/demo_aql/local/05-count-param1.aql
@@ -0,0 +1,23 @@
+use dataverse demo_aql;
+
+declare type OrderType as open {
+ oid: int32,
+ cid: int32,
+ orderstatus: string,
+ orderpriority: string,
+ clerk: string,
+ total: float
+}
+
+declare nodegroup group1 on nc1, nc2;
+
+declare dataset Orders(OrderType)
+ partitioned by key oid on group1;
+
+write output to nc1:"/tmp/05-count-param1.adm";
+
+count(
+for $o in dataset('Orders')
+where not(is-null($o.param1))
+return $o
+)