提交 3cb0f3fe 编写于 作者: B Bogdan Gusiev

Do not create useless database transaction when building `has_one` association.

上级 a002442f
## Rails 4.0.0 (unreleased) ##
* Do not create useless database transaction when building `has_one` association.
Example:
User.has_one :profile
User.new.build_profile
*Bogdan Gusiev*
* :counter_cache option for `has_many` associations to support custom named counter caches.
Fix #7993
......
......@@ -28,7 +28,7 @@ def replace(record, save = true)
# 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
transaction_if(save) do
remove_target!(options[:dependent]) if target && !target.destroyed?
if record
......@@ -90,6 +90,14 @@ def remove_target!(method)
def nullify_owner_attributes(record)
record[reflection.foreign_key] = nil
end
def transaction_if(value)
if value
reflection.klass.transaction { yield }
else
yield
end
end
end
end
end
......@@ -206,6 +206,12 @@ def test_successful_build_association
assert_equal account, firm.account
end
def test_build_association_dont_create_transaction
assert_no_queries {
Firm.new.build_account
}
end
def test_build_and_create_should_not_happen_within_scope
pirate = pirates(:blackbeard)
scoped_count = pirate.association(:foo_bulb).scope.where_values.count
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册