-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Add BigQuery UDF support #1988
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 BigQuery UDF support #1988
Conversation
| user_defined_function_resources = _TypedProperty('user_defined_function_resources', list) | ||
| """See: | ||
| https://cloud.google.com/bigquery/docs/reference/v2/jobs#configuration.query.userDefinedFunctionResources | ||
| """ |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
|
@takbab Thanks for pitching in on this feature! |
|
@tseaver Thanks for checking! |
gcloud/bigquery/job.py
Outdated
| _flatten_results = None | ||
| _priority = None | ||
| _use_query_cache = None | ||
| _user_defined_function_resources = None |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Allow it to check files that cause 1.6.0 to barf.
Pylint 1.6.3 compatibility
Introduced in PR googleapis#1914. Bump pylint's max line count for test modules accordingly.
…coveralls-saddenz Fix branch coverage miss in 'gcloud.streaming.transfer'.
Adding BigQuery support for legacy SQL.
|
We found a Contributor License Agreement for you (the sender of this pull request), but were unable to find agreements for the commit author(s). If you authored these, maybe you used a different email address in the git commits than was used to sign the CLA (login here to double check)? If these were authored by someone else, then they will need to sign a CLA as well, and confirm that they're okay with these being contributed to Google. |
Fixes all Pylint failures of - missing-returns-doc - redundant-returns-doc - ungrouped-imports Also makes a little headway on missing-raises-doc though it's unclear if this error should be fixed. Towards googleapis#1968.
This is because the false positive was fixed in Pylint 1.6.4.
Also fixing some lint related errors (not using arguments and not using self).
Making HappyBase enabled/disabled checks into no-ops.
Note this is "broken" in some sense though matches the semantics of the original.
PEP257 Clean-up of docstrings.
…-just-put Make counter_set in HappyBase agree with HBase impl. semantics
…-doc Fix datastore __init__ docstring.
…re-bigquery-udf # Conflicts: # gcloud/bigquery/job.py # gcloud/bigquery/test_job.py
|
We found a Contributor License Agreement for you (the sender of this pull request) and all commit authors, but as best as we can tell these commits were authored by someone else. If that's the case, please add them to this pull request and have them confirm that they're okay with these commits being contributed to Google. If we're mistaken and you did author these commits, just reply here to confirm. |
|
@tseaver I will recreate PR to clean my commits and diff. |
Add a field to support BigQuery UDF.
https://cloud.google.com/bigquery/docs/reference/v2/jobs
Closes #1829