提交 1fa76a2f 编写于 作者: R Rafael Mendonça França

Merge pull request #12135 from dylanahsmith/avoid_empty_transaction

Avoid empty transaction from setting has_one association on new record.

Conflicts:
	activerecord/CHANGELOG.md
* Setting a has_one association on a new record no longer causes an empty
transaction.
*Dylan Thacker-Smith*
* Fix `AR::Relation#merge` sometimes failing to preserve `readonly(false)` flag.
*thedarkone*
......
......@@ -27,6 +27,8 @@ def replace(record, save = true)
return self.target if !(target || record)
if (target != record) || record.changed?
save &&= owner.persisted?
transaction_if(save) do
remove_target!(options[:dependent]) if target && !target.destroyed?
......@@ -34,7 +36,7 @@ def replace(record, save = true)
set_owner_attributes(record)
set_inverse_instance(record)
if owner.persisted? && save && !record.save
if save && !record.save
nullify_owner_attributes(record)
set_owner_attributes(target) if target
raise RecordNotSaved, "Failed to save the new associated #{reflection.name}."
......
......@@ -505,6 +505,8 @@ def test_has_one_transaction
assert_no_queries { company.account = nil }
account = Account.find(2)
assert_queries { company.account = account }
assert_no_queries { Firm.new.account = account }
end
def test_has_one_assignment_triggers_save_on_change
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册