mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 18:10:54 +00:00
Fixed InsertOrUpdate bug
This commit is contained in:
parent
3d7ef599cc
commit
712df81c99
@ -592,7 +592,7 @@ func (d *dbBase) InsertOrUpdate(q dbQuerier, mi *modelInfo, ind reflect.Value, a
|
||||
row := q.QueryRow(query, values...)
|
||||
var id int64
|
||||
err = row.Scan(&id)
|
||||
if err.Error() == `pq: syntax error at or near "ON"` {
|
||||
if err != nil && err.Error() == `pq: syntax error at or near "ON"` {
|
||||
err = fmt.Errorf("postgres version must 9.5 or higher")
|
||||
}
|
||||
return id, err
|
||||
|
Loading…
Reference in New Issue
Block a user