We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab2878e commit 06101a1Copy full SHA for 06101a1
arrow-array/src/builder/generic_bytes_view_builder.rs
@@ -205,7 +205,9 @@ impl<T: ByteViewType + ?Sized> GenericByteViewBuilder<T> {
205
self.null_buffer_builder.append_non_null();
206
}
207
208
- /// Appends an array
+ /// Appends an array to the builder.
209
+ /// This will flush any in-progress block and append the data buffers
210
+ /// and add the (adapted) views.
211
pub fn append_array(&mut self, array: &GenericByteViewArray<T>) {
212
self.flush_in_progress();
213
self.completed.extend(array.data_buffers().iter().cloned());
0 commit comments