Mike Seddon created ARROW-10839:
-----------------------------------
Summary: [Rust] [DataFusion] Implement BETWEEN Operator
Key: ARROW-10839
URL: https://issues.apache.org/jira/browse/ARROW-10839
Project: Apache Arrow
Issue Type: New Feature
Components: Rust - DataFusion
Reporter: Mike Seddon
Assignee: Mike Seddon
Fix For: 3.0.0
3 of the 22 TPC-H queries use the *BETWEEN* operator which is syntactic sugar
for:
{value} >= {low} AND {value} <= {high}
e.g.
`and l_discount between 0.06 - 0.01 and 0.06 + 0.01`
is equal to
`and l_discount > 0.06 - 0.01 and l_discount < 0.06 + 0.01`
--
This message was sent by Atlassian Jira
(v8.3.4#803005)