We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab0bf9c commit d5091bcCopy full SHA for d5091bc
system_tests/bigquery.py
@@ -524,3 +524,12 @@ def test_sync_query_w_nested_arrays_and_structs(self):
524
self.assertEqual(len(query.rows), 1)
525
self.assertEqual(len(query.rows[0]), 1)
526
self.assertEqual(query.rows[0][0], example['expected'])
527
+
528
+ def test_dump_table_w_public_data(self):
529
+ PUBLIC = 'bigquery-public-data'
530
+ DATASET_NAME = 'samples'
531
+ TABLE_NAME = 'natality'
532
533
+ dataset = Config.CLIENT.dataset(DATASET_NAME, project=PUBLIC)
534
+ table = dataset.table(TABLE_NAME)
535
+ self._fetch_single_page(table)
0 commit comments