1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 23:10:55 +00:00

Merge pull request #2636 from guanly/master

ISSUE2630 使用sqlite,orm中通过filter后的delete删除不成功
This commit is contained in:
astaxie 2017-05-11 22:04:27 +08:00 committed by GitHub
commit bceefc9075

View File

@ -833,7 +833,11 @@ func (d *dbBase) DeleteBatch(q dbQuerier, qs *querySet, mi *modelInfo, cond *Con
if err := rs.Scan(&ref); err != nil {
return 0, err
}
args = append(args, reflect.ValueOf(ref).Interface())
pkValue, err := d.convertValueFromDB(mi.fields.pk, reflect.ValueOf(ref).Interface(), tz)
if err != nil {
return 0, err
}
args = append(args, pkValue)
cnt++
}