mirror of https://github.com/citusdata/citus.git
sort result in ch_bench_having_mx test
parent
70f27c10e5
commit
0f6c21d418
|
@ -345,11 +345,11 @@ having sum(s_order_cnt) >
|
||||||
where mod((s_w_id * s_i_id),10000) = s_suppkey
|
where mod((s_w_id * s_i_id),10000) = s_suppkey
|
||||||
and s_nationkey = n_nationkey
|
and s_nationkey = n_nationkey
|
||||||
and n_name = 'GERMANY')
|
and n_name = 'GERMANY')
|
||||||
order by ordercount desc;
|
order by s_i_id, ordercount desc;
|
||||||
s_i_id | ordercount
|
s_i_id | ordercount
|
||||||
---------------------------------------------------------------------
|
---------------------------------------------------------------------
|
||||||
33 | 1
|
|
||||||
1 | 1
|
1 | 1
|
||||||
|
33 | 1
|
||||||
(2 rows)
|
(2 rows)
|
||||||
|
|
||||||
insert into stock VALUES
|
insert into stock VALUES
|
||||||
|
@ -366,7 +366,7 @@ having sum(s_order_cnt) >
|
||||||
where mod((s_w_id * s_i_id),10000) = s_suppkey
|
where mod((s_w_id * s_i_id),10000) = s_suppkey
|
||||||
and s_nationkey = n_nationkey
|
and s_nationkey = n_nationkey
|
||||||
and n_name = 'GERMANY')
|
and n_name = 'GERMANY')
|
||||||
order by ordercount desc;
|
order by s_i_id, ordercount desc;
|
||||||
s_i_id | ordercount
|
s_i_id | ordercount
|
||||||
---------------------------------------------------------------------
|
---------------------------------------------------------------------
|
||||||
1 | 100001
|
1 | 100001
|
||||||
|
|
|
@ -173,7 +173,7 @@ having sum(s_order_cnt) >
|
||||||
where mod((s_w_id * s_i_id),10000) = s_suppkey
|
where mod((s_w_id * s_i_id),10000) = s_suppkey
|
||||||
and s_nationkey = n_nationkey
|
and s_nationkey = n_nationkey
|
||||||
and n_name = 'GERMANY')
|
and n_name = 'GERMANY')
|
||||||
order by ordercount desc;
|
order by s_i_id, ordercount desc;
|
||||||
|
|
||||||
insert into stock VALUES
|
insert into stock VALUES
|
||||||
(10033, 1, 1, 1, 100000, 1, '', '','','','','','','','','','');
|
(10033, 1, 1, 1, 100000, 1, '', '','','','','','','','','','');
|
||||||
|
@ -190,7 +190,7 @@ having sum(s_order_cnt) >
|
||||||
where mod((s_w_id * s_i_id),10000) = s_suppkey
|
where mod((s_w_id * s_i_id),10000) = s_suppkey
|
||||||
and s_nationkey = n_nationkey
|
and s_nationkey = n_nationkey
|
||||||
and n_name = 'GERMANY')
|
and n_name = 'GERMANY')
|
||||||
order by ordercount desc;
|
order by s_i_id, ordercount desc;
|
||||||
|
|
||||||
\c - - - :master_port
|
\c - - - :master_port
|
||||||
BEGIN;
|
BEGIN;
|
||||||
|
|
Loading…
Reference in New Issue