-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Add support for types in BigQuery #232
Conversation
|
||
elif field['type'] == 'BOOLEAN': | ||
cell_value = cell_value in ('True', 'true', 'TRUE') | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You might want to add support for date/time fields too, otherwise you will have issues with charts.
Thanks for this, @jeremi! See my other 2 comments, and let me know if you plan to implement the extra changes or you prefer me to merge this already. |
Yes, I will. Jeremi |
I think for now the easiest thing to do will be to conver the TIMESTAMP to datetime object ( |
Fix the type field
That should fix the 2 issues mentioned earlier. |
Add support for types in BigQuery
+1 |
No description provided.