Skip to content

Commit

Permalink
update tpch to use IN expr
Browse files Browse the repository at this point in the history
  • Loading branch information
seddonm1 committed Jan 6, 2021
1 parent e4f69e6 commit 9e8f888
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/benchmarks/src/bin/tpch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ fn create_logical_plan(ctx: &mut ExecutionContext, query: usize) -> Result<Logic
on
l_orderkey = o_orderkey
where
(l_shipmode = 'MAIL' or l_shipmode = 'SHIP')
l_shipmode in ('MAIL', 'SHIP')
and l_commitdate < l_receiptdate
and l_shipdate < l_commitdate
and l_receiptdate >= date '1994-01-01'
Expand Down

0 comments on commit 9e8f888

Please sign in to comment.