Skip to content

Commit

Permalink
Merge pull request googleapis#3171 from tseaver/2951-bigquery-insert-…
Browse files Browse the repository at this point in the history
…nested-nested

Add BigQuery system test for nested-nested records.
  • Loading branch information
tseaver authored Mar 20, 2017
2 parents d0c9174 + 17875c1 commit 752223f
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions system_tests/bigquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -664,6 +664,45 @@ def test_dump_table_w_public_data(self):
table = dataset.table(TABLE_NAME)
self._fetch_single_page(table)

def test_insert_nested_nested(self):
# See #2951
SF = bigquery.SchemaField
schema = [
SF('string_col', 'STRING', mode='NULLABLE'),
SF('record_col', 'RECORD', mode='NULLABLE', fields=[
SF('nested_string', 'STRING', mode='NULLABLE'),
SF('nested_repeated', 'INTEGER', mode='REPEATED'),
SF('nested_record', 'RECORD', mode='NULLABLE', fields=[
SF('nested_nested_string', 'STRING', mode='NULLABLE'),
]),
]),
]
record = {
'nested_string': 'another string value',
'nested_repeated': [0, 1, 2],
'nested_record': {'nested_nested_string': 'some deep insight'},
}
to_insert = [
('Some value', record)
]
table_name = 'test_table'
dataset = Config.CLIENT.dataset(
_make_dataset_name('issue_2951'))

retry_403(dataset.create)()
self.to_delete.append(dataset)

table = dataset.table(table_name, schema=schema)
table.create()
self.to_delete.insert(0, table)

table.insert_data(to_insert)

retry = RetryResult(_has_rows, max_tries=8)
rows = retry(self._fetch_single_page)(table)

self.assertEqual(rows, to_insert)

def test_create_table_nested_schema(self):
table_name = 'test_table'
dataset = Config.CLIENT.dataset(
Expand Down

0 comments on commit 752223f

Please sign in to comment.