Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stabilize q71 #4773

Merged
merged 1 commit into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading