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) {
this.statements.push({
type: 'table',
this._ensureSingle('table', {
value: this._wrap(tableName)
});
},