mirror of
https://github.com/go-gitea/gitea
synced 2024-11-22 04:13:12 +01:00
parent
97292da960
commit
fa8c3beb26
1 changed files with 6 additions and 3 deletions
|
@ -446,9 +446,12 @@ func GetFeeds(ctx context.Context, opts GetFeedsOptions) (ActionList, int64, err
|
||||||
return nil, 0, err
|
return nil, 0, err
|
||||||
}
|
}
|
||||||
|
|
||||||
sess := db.GetEngine(ctx).Where(cond).
|
sess := db.GetEngine(ctx).Where(cond)
|
||||||
Select("`action`.*"). // this line will avoid select other joined table's columns
|
if setting.Database.Type.IsMySQL() {
|
||||||
Join("INNER", "repository", "`repository`.id = `action`.repo_id")
|
sess = sess.IndexHint("USE", "JOIN", "IDX_action_c_u_d")
|
||||||
|
}
|
||||||
|
sess = sess.Select("`action`.*"). // this line will avoid select other joined table's columns
|
||||||
|
Join("INNER", "repository", "`repository`.id = `action`.repo_id")
|
||||||
|
|
||||||
opts.SetDefaultValues()
|
opts.SetDefaultValues()
|
||||||
sess = db.SetSessionPagination(sess, &opts)
|
sess = db.SetSessionPagination(sess, &opts)
|
||||||
|
|
Loading…
Reference in a new issue