Merge pull request #2583 from OlegFX/develop

Fixed InsertOrUpdate bug
This commit is contained in:
astaxie 2017-04-22 11:19:15 +08:00 committed by GitHub
commit 3bb4ca5adc
1 changed files with 1 additions and 1 deletions

View File

@ -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