aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activerecord/lib/active_record/persistence.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/persistence.rb b/activerecord/lib/active_record/persistence.rb
index a7181fd79b..4fce0cbb3f 100644
--- a/activerecord/lib/active_record/persistence.rb
+++ b/activerecord/lib/active_record/persistence.rb
@@ -66,7 +66,7 @@ module ActiveRecord
def delete
if persisted?
self.class.delete(id)
- IdentityMap.remove(self)
+ IdentityMap.remove(self) if IdentityMap.enabled?
end
@destroyed = true
freeze
@@ -76,7 +76,7 @@ module ActiveRecord
# that no changes should be made (since they can't be persisted).
def destroy
if persisted?
- IdentityMap.remove(self)
+ IdentityMap.remove(self) if IdentityMap.enabled?
self.class.unscoped.where(self.class.arel_table[self.class.primary_key].eq(id)).delete_all
end
@@ -279,7 +279,7 @@ module ActiveRecord
self.id ||= new_id
- IdentityMap.add(self)
+ IdentityMap.add(self) if IdentityMap.enabled?
@persisted = true
id
end