mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 11:55:37 +00:00 
			
		
		
		
	Fix issue search with db indexer because of mysql 5.7 sqlmode (#14907)
* Fix sqlmode bug * distinct is necessary
This commit is contained in:
		| @@ -1724,10 +1724,19 @@ func SearchIssueIDsByKeyword(kw string, repoIDs []int64, limit, start int) (int6 | |||||||
| 	) | 	) | ||||||
|  |  | ||||||
| 	var ids = make([]int64, 0, limit) | 	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 { | 	if err != nil { | ||||||
| 		return 0, nil, err | 		return 0, nil, err | ||||||
| 	} | 	} | ||||||
|  | 	for _, r := range res { | ||||||
|  | 		ids = append(ids, r.ID) | ||||||
|  | 	} | ||||||
|  |  | ||||||
| 	total, err := x.Distinct("id").Table("issue").Where(cond).Count() | 	total, err := x.Distinct("id").Table("issue").Where(cond).Count() | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user