Skip to content

Commit de5f9ef

Browse files
authored
Fix q20 sql typo in benchmarks (#409)
1 parent 8c49b92 commit de5f9ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

benchmarks/queries/q20.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ where
2828
l_partkey = ps_partkey
2929
and l_suppkey = ps_suppkey
3030
and l_shipdate >= date '1994-01-01'
31-
and l_shipdate < 'date 1994-01-01' + interval '1' year
31+
and l_shipdate < date '1994-01-01' + interval '1' year
3232
)
3333
)
3434
and s_nationkey = n_nationkey
3535
and n_name = 'CANADA'
3636
order by
37-
s_name;
37+
s_name;

0 commit comments

Comments
 (0)