Commits


Wes McKinney authored and Kouhei Sutou committed c25ed39abe7
ARROW-3299: [C++] Make RecordBatchBuilder non-copyable to appease MSVC MSVC generates a copy constructor for this class and gets upset that `ArrayBuilder` is non-copyable. It seems that the behavior for classes with dllexport is different which is why the patch earlier today broke the build Author: Wes McKinney <wesm+git@apache.org> Closes #2605 from wesm/ARROW-3299 and squashes the following commits: 05e55add <Wes McKinney> Disallow copy and assignment 48b26570 <Wes McKinney> unique_ptr requires assignment operator for some reason in MSVC 7c484541 <Wes McKinney> Add explicit dtor 1c95445f <Wes McKinney> Do not use inline dtor for ArrayBuilder