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
19f5184e
Commit
19f5184e
authored
Dec 06, 2019
by
David Fernandez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add upsert support to .bulk_insert
parent
899e36f7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
3 deletions
+37
-3
lib/gitlab/database.rb
lib/gitlab/database.rb
+11
-3
spec/lib/gitlab/database_spec.rb
spec/lib/gitlab/database_spec.rb
+26
-0
No files found.
lib/gitlab/database.rb
View file @
19f5184e
...
...
@@ -95,6 +95,10 @@ module Gitlab
version
.
to_f
>=
9.6
end
def
self
.
upsert_supported?
version
.
to_f
>=
9.5
end
# map some of the function names that changed between PostgreSQL 9 and 10
# https://wiki.postgresql.org/wiki/New_in_postgres_10
def
self
.
pg_wal_lsn_diff
...
...
@@ -158,7 +162,9 @@ module Gitlab
# disable_quote - A key or an Array of keys to exclude from quoting (You
# become responsible for protection from SQL injection for
# these keys!)
def
self
.
bulk_insert
(
table
,
rows
,
return_ids:
false
,
disable_quote:
[])
# on_conflict - Defines an upsert. Values can be: :disabled (default) or
# :do_nothing
def
self
.
bulk_insert
(
table
,
rows
,
return_ids:
false
,
disable_quote:
[],
on_conflict:
nil
)
return
if
rows
.
empty?
keys
=
rows
.
first
.
keys
...
...
@@ -176,10 +182,12 @@ module Gitlab
VALUES
#{
tuples
.
map
{
|
tuple
|
"(
#{
tuple
.
join
(
', '
)
}
)"
}
.join(', ')}
EOF
if
return_ids
sql
=
"
#{
sql
}
RETURNING id
"
if
upsert_supported?
&&
on_conflict
==
:do_nothing
sql
=
"
#{
sql
}
ON CONFLICT DO NOTHING
"
end
sql
=
"
#{
sql
}
RETURNING id"
if
return_ids
result
=
connection
.
execute
(
sql
)
if
return_ids
...
...
spec/lib/gitlab/database_spec.rb
View file @
19f5184e
...
...
@@ -228,6 +228,7 @@ describe Gitlab::Database do
describe
'.bulk_insert'
do
before
do
allow
(
described_class
).
to
receive
(
:connection
).
and_return
(
connection
)
allow
(
described_class
).
to
receive
(
:version
).
and_return
(
version
)
allow
(
connection
).
to
receive
(
:quote_column_name
,
&
:itself
)
allow
(
connection
).
to
receive
(
:quote
,
&
:itself
)
allow
(
connection
).
to
receive
(
:execute
)
...
...
@@ -242,6 +243,8 @@ describe Gitlab::Database do
]
end
let_it_be
(
:version
)
{
9.6
}
it
'does nothing with empty rows'
do
expect
(
connection
).
not_to
receive
(
:execute
)
...
...
@@ -307,6 +310,29 @@ describe Gitlab::Database do
expect
(
ids
).
to
eq
([
10
])
end
context
'with version >= 9.5'
do
it
'allows setting the upsert to do nothing'
do
expect
(
connection
)
.
to
receive
(
:execute
)
.
with
(
/ON CONFLICT DO NOTHING/
)
described_class
.
bulk_insert
(
'test'
,
[{
number:
10
}],
on_conflict: :do_nothing
)
end
end
context
'with version < 9.5'
do
let
(
:version
)
{
9.4
}
it
'refuses setting the upsert'
do
expect
(
connection
)
.
not_to
receive
(
:execute
)
.
with
(
/ON CONFLICT/
)
described_class
.
bulk_insert
(
'test'
,
[{
number:
10
}],
on_conflict: :do_nothing
)
end
end
end
end
...
...
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