[
https://issues.apache.org/jira/browse/ARROW-10839?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Jorge Leitão resolved ARROW-10839.
----------------------------------
Resolution: Fixed
Issue resolved by pull request 8865
[https://github.com/apache/arrow/pull/8865]
> [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
> Priority: Major
> Labels: pull-request-available
> Fix For: 3.0.0
>
> Time Spent: 4.5h
> Remaining Estimate: 0h
>
> 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)