zeroshade commented on code in PR #14146:
URL: https://github.com/apache/arrow/pull/14146#discussion_r978839261


##########
go/arrow/array/array.go:
##########
@@ -175,8 +175,8 @@ func init() {
                arrow.LARGE_STRING:            func(data arrow.ArrayData) 
arrow.Array { return NewLargeStringData(data) },
                arrow.LARGE_BINARY:            func(data arrow.ArrayData) 
arrow.Array { return NewLargeBinaryData(data) },
                arrow.LARGE_LIST:              func(data arrow.ArrayData) 
arrow.Array { return NewLargeListData(data) },
-               arrow.INTERVAL:                func(data arrow.ArrayData) 
arrow.Array { return NewIntervalData(data) },

Review Comment:
   yes. If you look at `datatype.go` you can see there's a comment there 
pointing out that `INTERVAL` as an enum value is deprecated in favor of the 
individual interval enums (`INTERVAL_MONTH_DAY_NANO`, etc...) So adding the new 
`RUN_LENGTH_ENCODED` type seemed like a good time to clean that out.



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