Ejemplo n.º 1
0
 // [START delete_table]
 public void DeleteTable(string datasetId, string tableId, BigqueryClient client)
 {
     // The Bigquery client method DeleteTable() is currently failing as noted in the following issue:
     // https://github.com/GoogleCloudPlatform/google-cloud-dotnet/issues/443
     client.DeleteTable(_projectId, datasetId, tableId);
 }
Ejemplo n.º 2
0
 // [START delete_table]
 public void DeleteTable(string datasetId, string tableId, BigqueryClient client)
 {
     client.DeleteTable(_projectId, datasetId, tableId);
 }