Skip to content

Commit 0b5bba8

Browse files
add space before where
1 parent 659f9a0 commit 0b5bba8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -787,9 +787,8 @@ var Base = Class.extend({
787787
*/
788788
remove: function (table, ids, callback) {
789789
var sql = 'DELETE FROM ' + this._escapeDDL + table + this._escapeDDL;
790-
var searchClause = '';
791790

792-
return this.runSql(sql + this.buildWhereClause(ids)).nodeify(callback);
791+
return this.runSql(sql + ' ' + this.buildWhereClause(ids)).nodeify(callback);
793792
},
794793

795794
/**

0 commit comments

Comments
 (0)