-
Notifications
You must be signed in to change notification settings - Fork 639
Closed
Labels
api: bigqueryIssues related to the BigQuery API.Issues related to the BigQuery API.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.
Description
https://googlecloudplatform.github.io/gcloud-node/#/docs/v0.25.0/bigquery/dataset?method=createTable
This doesn't work
var tableConfig = {
id: 'institution_data',
schema: 'UNITID'
}
dataset.createTable(tableConfig, function(err, table, apiResponse) {})This does
dataset.createTable('institution_data', {schema: 'UNITID'}, function (err, table, apiResponse) {})First parameter should be table id.
Metadata
Metadata
Assignees
Labels
api: bigqueryIssues related to the BigQuery API.Issues related to the BigQuery API.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.