askoa commented on code in PR #3158:
URL: https://github.com/apache/arrow-rs/pull/3158#discussion_r1030409937
##########
arrow-array/src/builder/fixed_size_list_builder.rs:
##########
@@ -140,6 +146,42 @@ where
FixedSizeListArray::from(array_data)
}
+
+ /// Builds the [`FixedSizeListBuilder`] without resetting the builder.
+ pub fn finish_cloned(&self) -> FixedSizeListArray {
+ let len = self.len();
+ let values_arr = self
+ .values_builder
+ .as_any()
+ .downcast_ref::<T>()
+ .unwrap()
+ .finish_cloned();
Review Comment:
I marked it resolved because I was about to push commit. I pushed it now.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]