You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Mike Seddon (Jira)" <ji...@apache.org> on 2020/12/07 22:13:00 UTC

[jira] [Created] (ARROW-10839) [Rust] [DataFusion] Implement BETWEEN Operator

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)