We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8182e31 commit 29caa0fCopy full SHA for 29caa0f
1 file changed
gcloud/bigquery/test_table.py
@@ -1185,6 +1185,7 @@ def _row_data(row):
1185
SENT = {
1186
'skipInvalidRows': True,
1187
'ignoreUnknownValues': True,
1188
+ 'template_suffix': '20160303',
1189
'rows': [{'insertId': index, 'json': _row_data(row)}
1190
for index, row in enumerate(ROWS)],
1191
}
@@ -1194,7 +1195,9 @@ def _row_data(row):
1194
1195
rows=ROWS,
1196
row_ids=[index for index, _ in enumerate(ROWS)],
1197
skip_invalid_rows=True,
- ignore_unknown_values=True)
1198
+ ignore_unknown_values=True,
1199
+ template_suffix='20160303',
1200
+ )
1201
1202
self.assertEqual(len(errors), 1)
1203
self.assertEqual(errors[0]['index'], 1)
0 commit comments