Fix issue search with db indexer because of mysql 5.7 sqlmode (#14907)

* Fix sqlmode bug

* distinct is necessary
mj-v1.14.3
Lunny Xiao 3 years ago committed by GitHub
parent f4efa10f77
commit 5ccf8b6430
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1724,10 +1724,19 @@ func SearchIssueIDsByKeyword(kw string, repoIDs []int64, limit, start int) (int6
)
var ids = make([]int64, 0, limit)
err := x.Distinct("id").Table("issue").Where(cond).OrderBy("`updated_unix` DESC").Limit(limit, start).Find(&ids)
var res = make([]struct {
ID int64
UpdatedUnix int64
}, 0, limit)
err := x.Distinct("id", "updated_unix").Table("issue").Where(cond).
OrderBy("`updated_unix` DESC").Limit(limit, start).
Find(&res)
if err != nil {
return 0, nil, err
}
for _, r := range res {
ids = append(ids, r.ID)
}
total, err := x.Distinct("id").Table("issue").Where(cond).Count()
if err != nil {

Loading…
Cancel
Save