From 737b0019a97ce47f9fc0d99d1555539a036ff7be Mon Sep 17 00:00:00 2001 From: Mike Seddon Date: Mon, 14 Dec 2020 07:52:21 +1100 Subject: [PATCH] update relevant tpch-queries with between --- rust/benchmarks/src/bin/tpch.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/benchmarks/src/bin/tpch.rs b/rust/benchmarks/src/bin/tpch.rs index 1d7f4cfbf9f16..fff4e2bb61d0f 100644 --- a/rust/benchmarks/src/bin/tpch.rs +++ b/rust/benchmarks/src/bin/tpch.rs @@ -366,7 +366,7 @@ fn create_logical_plan(ctx: &mut ExecutionContext, query: usize) -> Result= date '1994-01-01' and l_shipdate < date '1995-01-01' - and l_discount > 0.06 - 0.01 and l_discount < 0.06 + 0.01 + and l_discount between 0.06 - 0.01 and 0.06 + 0.01 and l_quantity < 24;" ), @@ -400,7 +400,7 @@ fn create_logical_plan(ctx: &mut ExecutionContext, query: usize) -> Result date '1995-01-01' and l_shipdate < date '1996-12-31' + and l_shipdate between date '1995-01-01' and date '1996-12-31' ) as shipping group by supp_nation,