wkalt commented on code in PR #43013: URL: https://github.com/apache/arrow/pull/43013#discussion_r1650270160
########## go/arrow/array/fixed_size_list.go: ########## @@ -162,25 +162,38 @@ func (a *FixedSizeList) MarshalJSON() ([]byte, error) { } type FixedSizeListBuilder struct { - builder - - etype arrow.DataType // data type of the list's elements. - n int32 // number of elements in the fixed-size list. - values Builder // value builder for the list's elements. + baseListBuilder + n int32 // number of elements in the fixed-size list. Review Comment: Stashing the length here because I couldn't figure out a way to get it from the baseListBuilder. If there is a way we can use it and drop this. -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org