ISSUE2630 使用sqlite,orm中通过filter后的delete删除不成功

https://github.com/astaxie/beego/issues/2630
This commit is contained in:
guanly 2017-05-11 14:49:01 +08:00 committed by GitHub
parent 83814a76cc
commit 9b01b1c63d
1 changed files with 5 additions and 1 deletions

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 {
panic(fmt.Errorf("get pk value failed: `%s` ", ref))
}
args = append(args, pkValue)
cnt++
}