Commits


Chao Sun authored and Krisztián Szűcs committed b23cedd12f7
ARROW-4075: [Rust] Reuse array builder after calling finish() Currently a buffer/array builder is consumed after `finish()` is called. This may not be very convenient as one may want to use the same builder for multiple arrays. This changes the behavior of it to reset the builder instead. Author: Chao Sun <sunchao@apache.org> Closes #3221 from sunchao/ARROW-4075 and squashes the following commits: 49f6c4c6 <Chao Sun> ARROW-4075: Reuse array builder after calling finish()