Skip to content

Commit 051089e

Browse files
committed
bad line breaks before +
sorry, wasnt paying attention
1 parent 53b3612 commit 051089e

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

lib/Drivers/DML/sqlite.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -225,9 +225,10 @@ Driver.prototype.clear = function (table, cb) {
225225
if (err) {
226226
return cb(err);
227227
}
228-
var query = "DELETE FROM "
229-
+ this.query.escapeId("sqlite_sequence")
230-
+ " WHERE name=" + this.query.escapeVal(table);
228+
var query = "DELETE FROM " +
229+
this.query.escapeId("sqlite_sequence") +
230+
" WHERE name=" +
231+
this.query.escapeVal(table);
231232

232233
if (debug) {
233234
require("../../Debug").sql('sqlite', query);

0 commit comments

Comments
 (0)