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
8eb6d13e
Commit
8eb6d13e
authored
Mar 09, 2020
by
Matthias Kaeppler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Capture existing PK before deletion
parent
d9d687b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
app/models/concerns/bulk_insert_safe.rb
app/models/concerns/bulk_insert_safe.rb
+2
-2
No files found.
app/models/concerns/bulk_insert_safe.rb
View file @
8eb6d13e
...
...
@@ -111,8 +111,8 @@ module BulkInsertSafe
end
def
_bulk_insert_reject_primary_key!
(
attributes
,
primary_key
)
if
attributes
.
delete
(
primary_key
)
raise
PrimaryKeySetError
,
"Primary key set:
#{
primary_key
}
:
#{
attributes
[
primary_key
]
}
\n
"
\
if
existing_pk
=
attributes
.
delete
(
primary_key
)
raise
PrimaryKeySetError
,
"Primary key set:
#{
primary_key
}
:
#{
existing_pk
}
\n
"
\
"Bulk-inserts are only supported for rows that don't already have PK set"
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