-
Notifications
You must be signed in to change notification settings - Fork 2k
Closed
Labels
🚨This issue needs some love.This issue needs some love.triage meI really want to be triaged.I really want to be triaged.
Description
the createTable is defined with 4 arguments but called with only 3 arguments, caused runtime broken of callback not defined
function createTable (datasetId, tableId, schema, callback) {var program = module.exports = {
createTable: createTable,
// ...
}
.command('create <datasetId> <tableId>', 'Create a new table with the specified ID in the specified dataset.', {}, function (options) {
program.createTable(options.datasetId, options.tableId, utils.makeHandler(false));
})Metadata
Metadata
Assignees
Labels
🚨This issue needs some love.This issue needs some love.triage meI really want to be triaged.I really want to be triaged.