What would you like to be added?
What is the feasibility of migrating to using their newer library?
https://pkg.go.dev/cloud.google.com/go/bigquery
It seems to offer a much stronger typing support, especially regarding parameter types.
Currently you can't pass a limit param as a number, because the marshalling fails due to expecting QueryParameterValue.Value to be string, when a number is fully supported by BiqQuery.
What would you like to be added?
What is the feasibility of migrating to using their newer library?
https://pkg.go.dev/cloud.google.com/go/bigquery
It seems to offer a much stronger typing support, especially regarding parameter types.
Currently you can't pass a limit param as a number, because the marshalling fails due to expecting
QueryParameterValue.Valueto bestring, when a number is fully supported by BiqQuery.