Skip to content
Snippets Groups Projects
Commit 5f22dbdb authored by Tiago Botelho's avatar Tiago Botelho
Browse files

Improves User#owned_projects query performance

parent 40c338a4
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -623,9 +623,7 @@ class User < ActiveRecord::Base
end
 
def owned_projects
@owned_projects ||=
Project.where('namespace_id IN (?) OR namespace_id = ?',
owned_groups.select(:id), namespace.id).joins(:namespace)
@owned_projects ||= Project.from("(#{owned_projects_union.to_sql}) AS projects")
end
 
# Returns projects which user can admin issues on (for example to move an issue to that project).
Loading
Loading
@@ -1196,6 +1194,15 @@ class User < ActiveRecord::Base
 
private
 
def owned_projects_union
Gitlab::SQL::Union.new([
Project.where(namespace: namespace),
Project.joins(:project_authorizations)
.where("projects.namespace_id <> ?", namespace.id)
.where(project_authorizations: { user_id: id, access_level: Gitlab::Access::OWNER })
], remove_duplicates: false)
end
def ci_projects_union
scope = { access_level: [Gitlab::Access::MASTER, Gitlab::Access::OWNER] }
groups = groups_projects.where(members: scope)
Loading
Loading
---
title: Improves the performance of projects list page
merge_request: 17934
author:
type: performance
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment