1
1
Fork 1
mirror of https://github.com/go-gitea/gitea.git synced 2024-06-08 09:36:09 +02:00

Don't select join table's columns (#19660)

* Don't select join table

* Add comment
This commit is contained in:
Lunny Xiao 2022-05-09 23:19:16 +08:00 committed by GitHub
parent cd99540cdc
commit e435283c0f
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -340,7 +340,9 @@ func GetFeeds(ctx context.Context, opts GetFeedsOptions) (ActionList, error) {
}
e := db.GetEngine(ctx)
sess := e.Where(cond).Join("INNER", "repository", "`repository`.id = `action`.repo_id")
sess := e.Where(cond).
Select("`action`.*"). // this line will avoid select other joined table's columns
Join("INNER", "repository", "`repository`.id = `action`.repo_id")
opts.SetDefaultValues()
sess = db.SetSessionPagination(sess, &opts)