only one tableName per query call

This commit is contained in:
Tim Griesser 2014-02-18 09:49:18 -05:00
parent 89a3dec0c9
commit 5393cad7a0

View File

@ -71,8 +71,7 @@ module.exports = function(client) {
}, },
table: function QueryBuilder$table(tableName) { table: function QueryBuilder$table(tableName) {
this.statements.push({ this._ensureSingle('table', {
type: 'table',
value: this._wrap(tableName) value: this._wrap(tableName)
}); });
}, },