-
Notifications
You must be signed in to change notification settings - Fork 1.4k
feat(bigquery): support nullable params and geography params #4225
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
Conversation
Details: * Support the passing of Null<type> values for query parameters. * Add support for GEOGGRAPHY param type, which was added after the initial GEOGRAPHY type support launched. This PR made possible by a couple of cross-country flights without wifi.
Revamping this currently, value propagation had some issues |
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.
Looks good to me, but would prefer two smaller PRs in the future. 😄
Reasonable request. :) My rationale was that the delta from geography was small, and touched all the same areas so I lumped them together this time. |
Details:
Support the passing of Null values for query parameters.
Add support for GEOGGRAPHY param type, which was added after the initial
GEOGRAPHY type support launched.
Fixes: #4146