Commits


Mike Seddon authored and Jorge C. Leitao committed a774ae7f3b8
ARROW-10839: [Rust] [Data Fusion] Implement BETWEEN operator 3 of the 22 TPC-H queries use the `BETWEEN` operator which is syntactic sugar for `{value} >= {low} AND {value} <= {high}` This PR implements the `BETWEEN` operator by rewriting it into the two binary components. I am not sure if this is the correct approach but logically it feels sensible. I need some help identifying where the tests can be improved. Closes #8865 from seddonm1/between_expr Authored-by: Mike Seddon <seddonm1@gmail.com> Signed-off-by: Jorge C. Leitao <jorgecarleitao@gmail.com>