Skip to content

Commit 12f687c

Browse files
committed
Fix q72 query
1 parent 9ac04ed commit 12f687c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • sql/core/src/test/resources/tpcds-v2.7.0

sql/core/src/test/resources/tpcds-v2.7.0/q72.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ left outer join promotion on (cs_promo_sk=p_promo_sk)
1717
left outer join catalog_returns on (cr_item_sk = cs_item_sk and cr_order_number = cs_order_number)
1818
where d1.d_week_seq = d2.d_week_seq
1919
and inv_quantity_on_hand < cs_quantity
20-
and d3.d_date > d1.d_date + 5
20+
and d3.d_date > d1.d_date + interval 5 days
2121
and hd_buy_potential = '1001-5000'
2222
and d1.d_year = 2001
2323
and cd_marital_status = 'M'

0 commit comments

Comments
 (0)