sort result in ch_bench_having_mx test

pull/3900/head
Sait Talha Nisanci 2020-06-03 20:41:56 +03:00
parent 70f27c10e5
commit 0f6c21d418
2 changed files with 5 additions and 5 deletions

View File

@ -345,11 +345,11 @@ having sum(s_order_cnt) >
where mod((s_w_id * s_i_id),10000) = s_suppkey
and s_nationkey = n_nationkey
and n_name = 'GERMANY')
order by ordercount desc;
order by s_i_id, ordercount desc;
s_i_id | ordercount
---------------------------------------------------------------------
33 | 1
1 | 1
33 | 1
(2 rows)
insert into stock VALUES
@ -366,7 +366,7 @@ having sum(s_order_cnt) >
where mod((s_w_id * s_i_id),10000) = s_suppkey
and s_nationkey = n_nationkey
and n_name = 'GERMANY')
order by ordercount desc;
order by s_i_id, ordercount desc;
s_i_id | ordercount
---------------------------------------------------------------------
1 | 100001

View File

@ -173,7 +173,7 @@ having sum(s_order_cnt) >
where mod((s_w_id * s_i_id),10000) = s_suppkey
and s_nationkey = n_nationkey
and n_name = 'GERMANY')
order by ordercount desc;
order by s_i_id, ordercount desc;
insert into stock VALUES
(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
and s_nationkey = n_nationkey
and n_name = 'GERMANY')
order by ordercount desc;
order by s_i_id, ordercount desc;
\c - - - :master_port
BEGIN;