Fix fish DeleteAll bug
This commit is contained in:
parent
a426f09a75
commit
910c4b66ee
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ func buildDeleteQuery(q *Query) (*bytes.Buffer, []interface{}) {
|
||||||
|
|
||||||
where, whereArgs := whereClause(q, 1)
|
where, whereArgs := whereClause(q, 1)
|
||||||
if len(whereArgs) != 0 {
|
if len(whereArgs) != 0 {
|
||||||
args = append(args, whereArgs)
|
args = append(args, whereArgs...)
|
||||||
}
|
}
|
||||||
buf.WriteString(where)
|
buf.WriteString(where)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue