-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
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
Data Type: BIGNUMERIC support #435
Comments
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
I'd very much appreciate it if anyone could make me a reprex for this issue, i.e. some code that created a table with a BIGNUMERIC field and then tried to download from it. That would save me a little time and allow me to fix the underlying problem a little bit faster. |
I think the easiest thing to do (which I'll do for all unknown types) is to just return the string data, so you can do what you will with it. |
There is a new decimal type
BIGNUMERIC
available for Big Query tables (see data types docs). When we load a table with this type, we receive the error message:I think that we can just map BIGNUMERIC to float type (
Rcpp::DoubleVector
), but I'm not a master here. A similar request in the python SDK can help python-bigquery/ issue 367.Thank you for the great work!
The text was updated successfully, but these errors were encountered: