不要怂,就是干,撸起袖子干!

Commit efa85a94 by Filip Bonnevier

Remove unnecessary semi-colon from query

1 parent d69ee782
Showing with 1 additions and 3 deletions
......@@ -213,7 +213,6 @@ module.exports = (function() {
}
query += ";"
// console.log(query)
return query
},
......@@ -246,8 +245,7 @@ module.exports = (function() {
var query = "UPDATE " + QueryGenerator.addQuotes(tableName) +
" SET " + values.join(",") +
" WHERE " + QueryGenerator.getWhereConditions(where) +
";"
" WHERE " + QueryGenerator.getWhereConditions(where)
return query
},
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!