diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2018-06-05 00:27:43 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2018-06-07 06:58:45 +0900 |
commit | 5dc72378b783e924c5bf079ca660388ec4ac9224 (patch) | |
tree | 5411c32f4330fca8ea97c56b810ea77cd079983a /activerecord/lib | |
parent | 48c95cf7e591ed3b683705ded92c6d7c7518aaec (diff) | |
download | rails-5dc72378b783e924c5bf079ca660388ec4ac9224.tar.gz rails-5dc72378b783e924c5bf079ca660388ec4ac9224.tar.bz2 rails-5dc72378b783e924c5bf079ca660388ec4ac9224.zip |
Fix `collection.create` to could be rolled back by `after_save`
In `_create_record`, explicit `transaction` block requires rollback
handling manually when `insert_record` is failed.
We need to handle it in `_create_record`, not in `insert_record`, since
our test cases expect a record added to target and returned even if
`insert_record` is failed,
Closes #31488.
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/associations/collection_association.rb | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/associations/collection_association.rb b/activerecord/lib/active_record/associations/collection_association.rb index 7f1df9a21d..48cb819484 100644 --- a/activerecord/lib/active_record/associations/collection_association.rb +++ b/activerecord/lib/active_record/associations/collection_association.rb @@ -358,14 +358,18 @@ module ActiveRecord if attributes.is_a?(Array) attributes.collect { |attr| _create_record(attr, raise, &block) } else + record = build_record(attributes, &block) transaction do - add_to_target(build_record(attributes, &block)) do |record| - insert_record(record, true, raise) { + result = nil + add_to_target(record) do + result = insert_record(record, true, raise) { @_was_loaded = loaded? @association_ids = nil } end + raise ActiveRecord::Rollback unless result end + record end end @@ -443,7 +447,9 @@ module ActiveRecord end end - result && records + raise ActiveRecord::Rollback unless result + + records end def replace_on_target(record, index, skip_callbacks) |