hermanschaaf commented on code in PR #35191:
URL: https://github.com/apache/arrow/pull/35191#discussion_r1168886527


##########
go/arrow/csv/reader.go:
##########
@@ -767,7 +767,7 @@ func (r *Reader) parseList(field array.Builder, str string) 
{
 
 func (r *Reader) parseBinaryType(field array.Builder, str string) {
        // specialize the implementation when we know we cannot have nulls
-       if str != "" && r.isNull(str) {
+       if r.isNull(str) {
                field.AppendNull()
                return
        }

Review Comment:
   I think not, but happy to add one here



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