Commits


Chao Sun authored and Sutou Kouhei committed 75d4f425765
ARROW-5358: [Rust] Implement equality check for ArrayData and Array This implements equality comparison for `Array` type which checks whether two arrays are identical in content. Besides the above, this adds two traits: `PrimitiveArrayOps` and `ListArrayOps`. The former exposes a few common operations between numeric arrays and boolean array, while the latter between list and binary arrays. Author: Chao Sun <sunchao@apache.org> Closes #4643 from sunchao/ARROW-5358 and squashes the following commits: e40241b1 <Chao Sun> Fixes after rebasing 9a11efa4 <Chao Sun> Fix a bug in test 53ac33e6 <Chao Sun> Address comments 8663124c <Chao Sun> Replace expect with unwrap d3ffb27f <Chao Sun> ARROW-5358: Implement equality check for ArrayData and Array