serramatutu commented on code in PR #758:
URL: https://github.com/apache/arrow-go/pull/758#discussion_r3078666313
##########
arrow/array/dictionary.go:
##########
@@ -990,6 +1030,26 @@ type dictBuilder[T arrow.ValueType] struct {
dictionaryBuilder
}
+func (b *dictBuilder[T]) UnsafeAppend(v T) error {
Review Comment:
NOTE: I followed the same API that returns `error` for `Append` and
`UnsafeAppend()`. However the only thing that returns error from `appendValue`
and `unsafeAppendValue` is `b.memoTable.GetOrInsert(val)` since `val` is
`interface{}`.
Since here `v` is typed explicitly with `T`, is it safe to assume there
should never be any error. In that case I can change the API to ignore the
error here (I can add a comment). We should also change the API of `Append()`,
but that would be a breaking change.
--
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]