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

Merge pull request #7286 from kennyj/fix_7191

Fix #7191. Remove unnecessary transaction when assigning has_one associations.
......@@ -7,19 +7,21 @@ def replace(record, save = true)
raise_on_type_mismatch(record) if record
load_target
reflection.klass.transaction do
if target && target != record
remove_target!(options[:dependent]) unless target.destroyed?
end
if record
set_owner_attributes(record)
set_inverse_instance(record)
if owner.persisted? && save && !record.save
nullify_owner_attributes(record)
set_owner_attributes(target) if target
raise RecordNotSaved, "Failed to save the new associated #{reflection.name}."
# If target and record are nil, or target is equal to record,
# we don't need to have transaction.
if (target || record) && target != record
reflection.klass.transaction do
remove_target!(options[:dependent]) if target && !target.destroyed?
if record
set_owner_attributes(record)
set_inverse_instance(record)
if owner.persisted? && save && !record.save
nullify_owner_attributes(record)
set_owner_attributes(target) if target
raise RecordNotSaved, "Failed to save the new associated #{reflection.name}."
end
end
end
end
......
......@@ -535,4 +535,17 @@ def test_building_has_one_association_with_dependent_restrict
ensure
ActiveRecord::Base.dependent_restrict_raises = option_before
end
def test_has_one_transaction
company = companies(:first_firm)
account = Account.find(1)
company.account # force loading
assert_no_queries { company.account = account }
company.account = nil
assert_no_queries { company.account = nil }
account = Account.find(2)
assert_queries { company.account = account }
end
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册