(&mut self)
| 841 | } |
| 842 | |
| 843 | fn flush_in_progress(&mut self) { |
| 844 | if !self.in_progress.is_empty() { |
| 845 | let block = std::mem::take(&mut self.in_progress); |
| 846 | self.completed.push(Buffer::from_vec(block)); |
| 847 | } |
| 848 | } |
| 849 | |
| 850 | /// Finalize into a [`StringViewArray`] using the caller-supplied null |
| 851 | /// buffer. |
no test coverage detected