Commits


Chao Sun authored and Andy Grove committed bcca04aabd8
ARROW-4172: [Rust] more consistent naming in array builders This is to make the namings in `builder.rs` more consistent: 1. Changes `PrimitiveArrayBuilder` to `PrimitiveBuilder`, similarly for `ListArrayBuilder`, `BinaryArrayBuilder` and `StructArrayBuilder`. The `Array` seems redundant. 2. Currently we use both `push` and `append`, which is a bit confusing. This unifies them by using `append`. Author: Chao Sun <sunchao@apache.org> Closes #3345 from sunchao/ARROW-4172 and squashes the following commits: 3472d12 <Chao Sun> ARROW-4172: more consistent naming in array builders