Commits


Teddy Choi authored and Bryan Cutler committed d8bce0660ee
ARROW-2632: [Java] ArrowStreamWriter accumulates ArrowBlock but does not use them ArrowStreamWriter inherits from ArrowWriter the behavior of accumulating an ArrowBlock for each ArrowRecordBatch that is written. But this data is never used in the context of ArrowStreamWriter. writeRecordBatch can be overridden in ArrowStreamWriter to avoid adding the memory overhead. Author: Teddy Choi <pudidic@gmail.com> Closes #2079 from pudidic/ARROW-2632 and squashes the following commits: 70ecf08 <Teddy Choi> Preserve logging. Add more list size checks in unit tests. 7b289d4 <Teddy Choi> ARROW-2632: ArrowStreamWriter accumulates ArrowBlock but does not use them