D | test_bigquery_utils.py | 284 def create_table(self, table): argument 285 return table 287 def update_table(self, table, properties): argument 288 return Table(table.name + '_changed', table.schema) 290 def delete_table(self, table): argument 291 return 'deleted table ' + table.name 293 def create_rows(self, table, rows): argument 294 if table.name == 'bad_table': 306 def table(self, name): member in Dataset 357 table = client.create_table('existing_dataset', 'existing_table', schema) [all …]
|