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


##########
go/arrow/array/extension.go:
##########
@@ -38,7 +38,8 @@ type ExtensionArray interface {
        ExtensionType() arrow.ExtensionType
        // Storage returns the underlying storage array for this array.
        Storage() arrow.Array
-
+       // ValueString returns a string represenation of the value at the given 
index for the extension array.
+       ValueString(i int) string

Review Comment:
   looks like you need to add a default implementation of `ValueString` for 
`ExtensionArrayBase` in order for `staticcheck` not to complain that 
`mustEmbedExtensionArrayBase` is unused. 
   
   Essentially, `ExtensionArrayBase` needs to meet the `ExtensionArray` 
interface for staticcheck linting to be happy.



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