mirror of
https://github.com/go-gitea/gitea
synced 2024-11-17 15:31:06 +01:00
#2727 fix incompatible SQL in PostgreSQL
This commit is contained in:
parent
ad513a20e9
commit
eed9966ad6
5 changed files with 7 additions and 8 deletions
|
@ -3,7 +3,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra
|
||||||
|
|
||||||
![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true)
|
![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true)
|
||||||
|
|
||||||
##### Current version: 0.9.2
|
##### Current version: 0.9.3
|
||||||
|
|
||||||
| Web | UI | Preview |
|
| Web | UI | Preview |
|
||||||
|:-------------:|:-------:|:-------:|
|
|:-------------:|:-------:|:-------:|
|
||||||
|
|
2
gogs.go
2
gogs.go
|
@ -17,7 +17,7 @@ import (
|
||||||
"github.com/gogits/gogs/modules/setting"
|
"github.com/gogits/gogs/modules/setting"
|
||||||
)
|
)
|
||||||
|
|
||||||
const APP_VER = "0.9.2.0309"
|
const APP_VER = "0.9.3.0309"
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
runtime.GOMAXPROCS(runtime.NumCPU())
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
||||||
|
|
|
@ -1071,11 +1071,10 @@ WHERE team_user.org_id = ? AND team_user.uid = ?`, org.Id, userID).Find(&teams);
|
||||||
}
|
}
|
||||||
|
|
||||||
repos := make([]*Repository, 0, 5)
|
repos := make([]*Repository, 0, 5)
|
||||||
if err = x.Sql(`SELECT repository.* FROM repository
|
if err = x.Sql(fmt.Sprintf(`SELECT repository.* FROM repository
|
||||||
INNER JOIN team_repo ON team_repo.repo_id = repository.id
|
INNER JOIN team_repo ON team_repo.repo_id = repository.id
|
||||||
WHERE (repository.owner_id = ? AND repository.is_private = ?) OR team_repo.team_id IN (?)
|
WHERE (repository.owner_id = ? AND repository.is_private = ?) OR team_repo.team_id IN (%s)
|
||||||
GROUP BY repository.id`,
|
GROUP BY repository.id`, strings.Join(teamIDs, ",")), org.Id, false).Find(&repos); err != nil {
|
||||||
org.Id, false, strings.Join(teamIDs, ",")).Find(&repos); err != nil {
|
|
||||||
return fmt.Errorf("get repositories: %v", err)
|
return fmt.Errorf("get repositories: %v", err)
|
||||||
}
|
}
|
||||||
org.Repos = repos
|
org.Repos = repos
|
||||||
|
|
|
@ -90,7 +90,7 @@ func HandleOrgAssignment(ctx *Context, args ...bool) {
|
||||||
if ctx.Org.IsMember {
|
if ctx.Org.IsMember {
|
||||||
if ctx.Org.IsOwner {
|
if ctx.Org.IsOwner {
|
||||||
if err := org.GetTeams(); err != nil {
|
if err := org.GetTeams(); err != nil {
|
||||||
ctx.Handle(500, "GetUserTeams", err)
|
ctx.Handle(500, "GetTeams", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
0.9.2.0309
|
0.9.3.0309
|
Loading…
Reference in a new issue