From 193e2971ffba945f9e2e47ad6f663c49b1b0d104 Mon Sep 17 00:00:00 2001 From: Danny Hermes Date: Fri, 15 Jan 2016 22:16:16 -0800 Subject: [PATCH] Add more detail to BigQuery Table.insert_data(). Updating inspired by #1381. --- gcloud/bigquery/table.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gcloud/bigquery/table.py b/gcloud/bigquery/table.py index 95b69894478d..3d4aca60b3d0 100644 --- a/gcloud/bigquery/table.py +++ b/gcloud/bigquery/table.py @@ -632,7 +632,9 @@ def insert_data(self, https://cloud.google.com/bigquery/docs/reference/v2/tabledata/insertAll :type rows: list of tuples - :param rows: row data to be inserted + :param rows: Row data to be inserted. Each tuple should contain data + for each schema field on the current table and in the + same order as the schema fields. :type row_ids: list of string :param row_ids: Unique ids, one per row being inserted. If not