wolfeidau commented on code in PR #13098:
URL: https://github.com/apache/arrow/pull/13098#discussion_r873090541
##########
go/arrow/csv/reader.go:
##########
@@ -321,6 +324,10 @@ func (r *Reader) initFieldConverter(field *arrow.Field)
func(array.Builder, stri
field.(*array.StringBuilder).Append(str)
}
}
+ case *arrow.TimestampType:
+ return func(field array.Builder, str string) {
+ r.parseTimestamp(field, str)
+ }
Review Comment:
@zeroshade make perfect sense, I knew I was missing something fundamental
when adding that option.
I have update the PR with a commit to address the feedback.
Cheers for the review.
--
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]