Uh oh!
There was an error while loading. Please reload this page.
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.
Uh oh!
There was an error while loading. Please reload this page.
tseaver
commented
Jul 16, 2016
@takbab Thanks for pitching in on this feature! |
takbab
commented
Jul 16, 2016
@tseaver Thanks for checking! |
| _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.
Uh oh!
There was an error while loading. Please reload this page.
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.
googlebot
commented
Jul 19, 2016
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. |
tseaver
commented
Jul 19, 2016
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
googlebot
commented
Jul 20, 2016
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. |
takbab
commented
Jul 21, 2016
@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