googleapis / go-sql-spanner

Google Cloud Spanner driver for Go's database/sql package.
Apache License 2.0
104 stars 24 forks source link

fix: []*int and []*uint #267

Closed egonelbre closed 4 months ago

egonelbre commented 4 months ago

The types were mistyped as []uint and []int. Also adds an exhaustive test to all types listed in checkIsValidType.

It would be possible to support *[]uint as well, however, I'm not sure how useful it is.