blob: 097a48ba0e766924b0afd96a2991322ca799cb65 [file] [log] [blame]
buyingyib1dd8342014-11-26 14:37:12 -08001/*
2 * Description : This test case is to verify the fix for issue810
3 * https://code.google.com/p/asterixdb/issues/detail?id=810
4 * Expected Result : Success
5 * Date : 16th Nov. 2014
6 */
7
8drop dataverse tpch if exists;
9create dataverse tpch;
10
11use dataverse tpch;
12
13create type LineItemType as closed {
14 l_orderkey: int32,
15 l_partkey: int32,
16 l_suppkey: int32,
17 l_linenumber: int32,
18 l_quantity: double,
19 l_extendedprice: double,
20 l_discount: double,
21 l_tax: double,
22 l_returnflag: string,
23 l_linestatus: string,
24 l_shipdate: string,
25 l_commitdate: string,
26 l_receiptdate: string,
27 l_shipinstruct: string,
28 l_shipmode: string,
29 l_comment: string
30}
31
32create dataset LineItem(LineItemType)
33 primary key l_orderkey, l_linenumber;
34
35for $l in dataset('LineItem')
36where $l.l_shipdate <= '1998-09-02'
37/*+ hash*/
38group by $l_returnflag := $l.l_returnflag,
39 $l_linestatus := $l.l_linestatus
40 with $l
41 let $cheap := for $m in $l where ($m.l_discount>0.05) return $m
42 let $expensive := for $a in $l where ($a.l_discount<=0.05) return $a
43order by $l_returnflag, $l_linestatus
44return {
45 "l_returnflag": $l_returnflag,
46 "l_linestatus": $l_linestatus,
47 "count_cheaps": count($cheap),
48 "count_expensives": count($expensive)
49}