summaryrefslogtreecommitdiff
path: root/lib/gitlab/database.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/database.rb')
-rw-r--r--lib/gitlab/database.rb14
1 files changed, 11 insertions, 3 deletions
diff --git a/lib/gitlab/database.rb b/lib/gitlab/database.rb
index 50e23681de0..ceab9322857 100644
--- a/lib/gitlab/database.rb
+++ b/lib/gitlab/database.rb
@@ -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