You do not have access to this ticket

This project is archived and is in readonly mode.

#2919 ✓committed
Fjan

Activerecord::Base#clone does not set dirty bits

Reported by Fjan | July 16th, 2009 @ 10:52 PM | in 3.x

A cloned object does not get marked dirty:

obj = Person.first
obj2 = obj.clone
obj2.changed? # => false

This might trip people up who limit expensive validations to changed attributes.
For example, this is the failure that I ran into:

Class Person
validates_uniqueness_of :name, :if => Proc.new { |u| u.name_changed? } # cloned objects are not checked! end

One could argue that the behaviour is correct since #new() also results in #changed?() being false. In any case, I would suggest updating the documentation to point out the behaviour.

Comments and changes to this ticket

Create your profile

Help contribute to this project by taking a few moments to create your personal profile. Create your profile »

<h2 style="font-size: 14px">Tickets have moved to Github</h2>

The new ticket tracker is available at <a href="https://github.com/rails/rails/issues">https://github.com/rails/rails/issues</a>

Referenced by

Pages