Skip to content

Commit c2fa4d5

Browse files
authored
Fix tpcds q70 syntax (#4365)
1 parent 293e400 commit c2fa4d5

File tree

1 file changed

+1
-1
lines changed
  • ydb/library/benchmarks/queries/tpcds/yql

1 file changed

+1
-1
lines changed

ydb/library/benchmarks/queries/tpcds/yql/q70.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ select
2222
and s_state in
2323
( select s_state
2424
from (select store.s_state as s_state,
25-
rank() over ( partition by s_state order by sum(ss_net_profit) desc) as ranking
25+
rank() over ( partition by store.s_state order by sum(ss_net_profit) desc) as ranking
2626
from {{store_sales}} as store_sales
2727
cross join {{store}} as store
2828
cross join {{date_dim}} as date_dim

0 commit comments

Comments
 (0)