Skip to content

Commit

Permalink
Merge db28a4b into 165aa3d
Browse files Browse the repository at this point in the history
  • Loading branch information
resetius committed May 23, 2024
2 parents 165aa3d + db28a4b commit f96c310
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ydb/library/benchmarks/queries/tpcds/pg/q71.sql
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ select i_brand_id brand_id, i_brand brand,t_hour,t_minute,
and time_sk = t_time_sk
and (t_meal_time = 'breakfast' or t_meal_time = 'dinner')
group by i_brand, i_brand_id,t_hour,t_minute
order by ext_price desc nulls last, i_brand_id nulls first
order by ext_price desc nulls first, i_brand_id nulls first, t_hour,t_minute
limit 1000
;

Expand Down
2 changes: 1 addition & 1 deletion ydb/library/benchmarks/queries/tpcds/yql/q71.sql
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ select item.i_brand_id brand_id, item.i_brand brand,time_dim.t_hour,time_dim.t_m
and time_sk = time_dim.t_time_sk
and (t_meal_time = 'breakfast' or t_meal_time = 'dinner')
group by item.i_brand, item.i_brand_id,time_dim.t_hour,time_dim.t_minute
order by ext_price desc, brand_id
order by ext_price desc, brand_id, time_dim.t_hour,time_dim.t_minute
;

-- end query 1 in stream 0 using template query71.tpl

0 comments on commit f96c310

Please sign in to comment.