We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running a query in BigQuery using googleapis/bigquery/v2, FLOAT types in query results are returned as strings in dart.
These should be returned as "double" dart types instead.
The text was updated successfully, but these errors were encountered:
I get your point. The problem is that the range of double in JSON is different than float. For all cases, numbers are encoded as String.
double
float
String
It's weird, I know...but it's the recommended handling for float values.
I think a nice suggestion would be to offer double helpers in this case...
Sorry, something went wrong.
No branches or pull requests
When running a query in BigQuery using googleapis/bigquery/v2, FLOAT types in query results are returned as strings in dart.
These should be returned as "double" dart types instead.
The text was updated successfully, but these errors were encountered: