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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
d21f4130
Commit
d21f4130
authored
Feb 09, 2018
by
Greg Stark
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert to old code style where branches of the union do not have extra where clauses on them
parent
7b048631
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
18 deletions
+12
-18
app/models/ci/build.rb
app/models/ci/build.rb
+12
-18
No files found.
app/models/ci/build.rb
View file @
d21f4130
...
...
@@ -56,33 +56,27 @@ module Ci
# replaced with just the new storage to avoid the extra work.
scope
:with_artifacts
,
->
()
do
old
=
where
(
%q[artifacts_file <> '']
)
new
=
where
(
%q[(artifacts_file IS NULL OR artifacts_file = '') AND EXISTS (?)]
,
Ci
::
JobArtifact
.
select
(
1
).
where
(
'ci_builds.id = ci_job_artifacts.job_id'
))
old
=
Ci
::
Build
.
select
(
:id
).
where
(
%q[artifacts_file <> '']
)
new
=
Ci
::
Build
.
select
(
:id
).
where
(
%q[(artifacts_file IS NULL OR artifacts_file = '') AND EXISTS (?)]
,
Ci
::
JobArtifact
.
select
(
1
).
where
(
'ci_builds.id = ci_job_artifacts.job_id'
))
union
=
Gitlab
::
SQL
::
Union
.
new
([
old
,
new
],
remove_duplicates:
false
)
# XXX
#Ci::Build.from("(#{union.to_sql}) #{Ci::Build.table_name}")
where
(
%Q[ci_builds.id IN (SELECT ci_builds.id FROM (
#{
union
.
to_sql
}
))]
)
where
(
%Q[ci_builds.id IN (
#{
union
.
to_sql
}
)]
)
end
scope
:with_artifacts_not_expired
,
->
()
do
old
=
where
(
%q[artifacts_file <> '' AND (artifacts_expire_at IS NULL OR artifacts_expire_at > ?)]
,
Time
.
now
)
new
=
where
(
%q[(artifacts_file IS NULL OR artifacts_file = '') AND EXISTS (?)]
,
Ci
::
JobArtifact
.
select
(
1
).
where
(
'ci_builds.id = ci_job_artifacts.job_id AND (expire_at IS NULL OR expire_at > ?)'
,
Time
.
now
))
old
=
Ci
::
Build
.
select
(
:id
).
where
(
%q[artifacts_file <> '' AND (artifacts_expire_at IS NULL OR artifacts_expire_at > ?)]
,
Time
.
now
)
new
=
Ci
::
Build
.
select
(
:id
).
where
(
%q[(artifacts_file IS NULL OR artifacts_file = '') AND EXISTS (?)]
,
Ci
::
JobArtifact
.
select
(
1
).
where
(
'ci_builds.id = ci_job_artifacts.job_id AND (expire_at IS NULL OR expire_at > ?)'
,
Time
.
now
))
union
=
Gitlab
::
SQL
::
Union
.
new
([
old
,
new
],
remove_duplicates:
false
)
# XXX
#Ci::Build.from("(#{union.to_sql}) #{Ci::Build.table_name}")
where
(
%Q[ci_builds.id IN (SELECT ci_builds.id FROM (
#{
union
.
to_sql
}
))]
)
where
(
%Q[ci_builds.id IN (
#{
union
.
to_sql
}
)]
)
end
scope
:with_expired_artifacts
,
->
()
do
old
=
where
(
%q[artifacts_file <> '' AND artifacts_expire_at < ?]
,
Time
.
now
)
new
=
where
(
%q[(artifacts_file IS NULL OR artifacts_file = '') AND EXISTS (?)]
,
Ci
::
JobArtifact
.
select
(
1
).
where
(
'ci_builds.id = ci_job_artifacts.job_id AND expire_at < ?'
,
Time
.
now
))
old
=
Ci
::
Build
.
select
(
:id
).
where
(
%q[artifacts_file <> '' AND artifacts_expire_at < ?]
,
Time
.
now
)
new
=
Ci
::
Build
.
select
(
:id
).
where
(
%q[(artifacts_file IS NULL OR artifacts_file = '') AND EXISTS (?)]
,
Ci
::
JobArtifact
.
select
(
1
).
where
(
'ci_builds.id = ci_job_artifacts.job_id AND expire_at < ?'
,
Time
.
now
))
union
=
Gitlab
::
SQL
::
Union
.
new
([
old
,
new
],
remove_duplicates:
false
)
# XXX
#Ci::Build.from("(#{union.to_sql}) #{Ci::Build.table_name}")
where
(
%Q[ci_builds.id IN (SELECT ci_builds.id FROM (
#{
union
.
to_sql
}
))]
)
where
(
%Q[ci_builds.id IN (
#{
union
.
to_sql
}
)]
)
end
scope
:last_month
,
->
()
{
where
(
'created_at > ?'
,
Date
.
today
-
1
.
month
)
}
...
...
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