tustvold commented on code in PR #5862:
URL: https://github.com/apache/arrow-rs/pull/5862#discussion_r1634770861


##########
arrow-data/src/transform/mod.rs:
##########
@@ -320,6 +320,11 @@ pub enum Capacities {
     /// * the capacity of the array offsets
     /// * the capacity of the child data
     List(usize, Option<Box<Capacities>>),
+    /// FixedSizeList data type
+    /// Define
+    /// * the capacity of the array
+    /// * the capacity of the child data
+    FixedSizeList(usize, Option<Box<Capacities>>),

Review Comment:
   I believe this is technically a breaking change, as this enumeration is not 
marked `non_exhaustive`. Whilst less clean perhaps we could reuse the List 
variant above?



-- 
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]

Reply via email to