Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
588c7e45
Commit
588c7e45
authored
Nov 25, 2021
by
Rajendra Kadam
Committed by
Alper Akgun
Nov 25, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use joins instead of includes
parent
4b4000de
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
ee/lib/ee/gitlab/usage_data.rb
ee/lib/ee/gitlab/usage_data.rb
+3
-1
No files found.
ee/lib/ee/gitlab/usage_data.rb
View file @
588c7e45
...
...
@@ -525,7 +525,9 @@ module EE
min_id
=
minimum_id
(
::
Integrations
::
JiraTrackerData
.
where
(
issues_enabled:
true
),
:service_id
)
max_id
=
maximum_id
(
::
Integrations
::
JiraTrackerData
.
where
(
issues_enabled:
true
),
:service_id
)
# rubocop: enable UsageData/LargeTable:
count
(
::
Integrations
::
Jira
.
active
.
includes
(
:jira_tracker_data
).
where
(
jira_tracker_data:
{
issues_enabled:
true
}),
start:
min_id
,
finish:
max_id
)
# rubocop: disable UsageData/DistinctCountByLargeForeignKey
distinct_count
(
::
Integrations
::
Jira
.
active
.
left_outer_joins
(
:jira_tracker_data
).
where
(
jira_tracker_data:
{
issues_enabled:
true
}),
start:
min_id
,
finish:
max_id
)
# rubocop: enable UsageData/DistinctCountByLargeForeignKey
end
# rubocop:enable CodeReuse/ActiveRecord
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment