1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-02 22:30:20 +00:00

fix bug in postgres

This commit is contained in:
slene
2013-12-17 16:46:14 +08:00
parent 436f9a7468
commit 1c52f6834a
2 changed files with 6 additions and 0 deletions

View File

@ -1135,6 +1135,8 @@ func (d *dbBase) ReadValues(q dbQuerier, qs *querySet, mi *modelInfo, cond *Cond
query := fmt.Sprintf("SELECT %s FROM %s%s%s T0 %s%s%s%s", sels, Q, mi.table, Q, join, where, orderBy, limit)
d.ins.ReplaceMarks(&query)
var rs *sql.Rows
if r, err := q.Query(query, args...); err != nil {
return 0, err