yevgenypats commented on code in PR #35161:
URL: https://github.com/apache/arrow/pull/35161#discussion_r1169255815


##########
go/arrow/array/binarybuilder.go:
##########
@@ -319,7 +320,10 @@ func (b *BinaryBuilder) UnmarshalOne(dec *json.Decoder) 
error {
        case string:
                data, err := base64.StdEncoding.DecodeString(v)
                if err != nil {
-                       return err
+                       data, err = hex.DecodeString(v)
+                       if err != nil {
+                               return err
+                       }

Review Comment:
   Hmm....Prob it was in another branch and ended up here. will remove



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