Skip to content

Commit

Permalink
Merge pull request #2250 from tseaver/1786-bigquery-usage-docs-fix
Browse files Browse the repository at this point in the history
Fix 'destination_table' attribute typo in BQ usage docs.
  • Loading branch information
dhermes authored Sep 6, 2016
2 parents 89eed0e + 7d37a35 commit 7d1c02e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/bigquery-usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ Background a query, loading the results into a table:
>>> dataset = client.dataset('dataset_name')
>>> table = dataset.table(name='person_ages')
>>> job = client.run_async_query('fullname-age-query-job', query)
>>> job.destination_table = table
>>> job.destination = table
>>> job.write_disposition= 'truncate'
>>> job.name
'fullname-age-query-job'
Expand Down

0 comments on commit 7d1c02e

Please sign in to comment.