Uh oh!
There was an error while loading. Please reload this page.
Add new scalar statistics properties to 'QueryJob' - #3800
Merged
tseaver merged 7 commits intoSep 7, 2017
Merged
Conversation
This was referenced Aug 12, 2017
tswast
requested changes
Aug 14, 2017
| :returns: total bytes processed by the job, or None if job is not | ||
| yet complete. | ||
| """ | ||
| return self._job_statistics().get('totalBytesProcessed') |
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.
| :returns: total bytes processed by the job, or None if job is not | ||
| yet complete. | ||
| """ | ||
| return self._job_statistics().get('totalBytesBilled') |
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.
| :returns: number of DML rows affectd by the job, or None if job is not | ||
| yet complete. | ||
| """ | ||
| return self._job_statistics().get('numDmlAffectedRows') |
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
Sep 7, 2017
ContributorAuthor
tseaver
commented
Sep 7, 2017
ContributorAuthor
BQ tests all pass: the failure is in the docs build (now fixed on |
tswast
approved these changes
Sep 7, 2017
tseaver added a commit
that referenced
this pull request
Sep 11, 2017
* Add 'QueryJob.total_bytes_processed' property. * Add 'QueryJob.total_bytes_billed' property. * Add 'QueryJob.billing_tier' property. * Add 'QueryJob.cache_hit' property. * Add 'QueryJob.num_dml_affected_rows' property. * Add 'QueryJob.statement_type' property.
tswast pushed a commit
that referenced
this pull request
Sep 25, 2017
* Add 'QueryJob.total_bytes_processed' property. * Add 'QueryJob.total_bytes_billed' property. * Add 'QueryJob.billing_tier' property. * Add 'QueryJob.cache_hit' property. * Add 'QueryJob.num_dml_affected_rows' property. * Add 'QueryJob.statement_type' property.
sschatts
commented
Oct 10, 2017
@tseaver Do you have a planned date this will be released? |
tseaver
commented
Oct 10, 2017
ContributorAuthor
@sschatts There is a fairly intrusive |
sschatts
commented
Oct 10, 2017
@tseaver Thank you for the update. |
tswast pushed a commit
that referenced
this pull request
Oct 12, 2017
* Add 'QueryJob.total_bytes_processed' property. * Add 'QueryJob.total_bytes_billed' property. * Add 'QueryJob.billing_tier' property. * Add 'QueryJob.cache_hit' property. * Add 'QueryJob.num_dml_affected_rows' property. * Add 'QueryJob.statement_type' property.
tswast pushed a commit
that referenced
this pull request
Oct 16, 2017
* Add 'QueryJob.total_bytes_processed' property. * Add 'QueryJob.total_bytes_billed' property. * Add 'QueryJob.billing_tier' property. * Add 'QueryJob.cache_hit' property. * Add 'QueryJob.num_dml_affected_rows' property. * Add 'QueryJob.statement_type' property.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
total_bytes_processedtotal_bytes_billedbilling_tiercache_hitnum_dml_affected_rowsstatement_typeUses #3799 as a base.Cherry-picked / fixed up from PR #3721.