blob: 02263c4d1b048c81588150f770b7c685ce6a9c8f [file] [log] [blame]
vinayakb38b7ca42012-03-05 05:44:15 +00001use dataverse demo_aql;
2
3declare type OrderType as open {
4 oid: int32,
5 cid: int32,
6 orderstatus: string,
7 orderpriority: string,
8 clerk: string,
9 total: float
10}
11
12declare nodegroup group1 on nc1, nc2;
13
14declare dataset Orders(OrderType)
15 partitioned by key oid on group1;
16
17write output to nc1:"/tmp/05-count-param1.adm";
18
19count(
20for $o in dataset('Orders')
21where not(is-null($o.param1))
22return $o
23)