From 7d37a3505ca0fded4170ce2616a2408497910a7f Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Tue, 6 Sep 2016 16:08:23 -0400 Subject: [PATCH] Fix 'destination_table' attribute typo in BQ usage docs. Closes: #1786. --- docs/bigquery-usage.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/bigquery-usage.rst b/docs/bigquery-usage.rst index 6ff904da5876..73d5e5835e64 100644 --- a/docs/bigquery-usage.rst +++ b/docs/bigquery-usage.rst @@ -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'