zeroshade commented on PR #39087: URL: https://github.com/apache/arrow/pull/39087#issuecomment-1843306435
@dr2chase The Go 1.20 runs will be fixed by https://github.com/apache/arrow/pull/39117 shortly, (please rebase after that gets merged). The Go 1.19 runs are failing because `unsafe.SliceData` was only introduced in Go 1.20. Since for the time being we're maintaining compatibility with Go 1.19+ we either have to raise the minimum to Go 1.20 (and update the CI accordingly) or you'll have to follow the other cases where we've done this and put the uses of `unsafe.SliceData` behind build constraints for Go 1.20 (for example, look at `go/internal/hashing/hash_string_go1.19.go`) -- 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]
