aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/hotel.rb
Commit message (Collapse)AuthorAgeFilesLines
* scope_chain should not be mutated for other reflectionsNeeraj Singh2013-10-141-0/+6
Currently `scope_chain` uses same array for building different `scope_chain` for different associations. During processing these arrays are sometimes mutated and because of in-place mutation the changed `scope_chain` impacts other reflections. Fix is to dup the value before adding to the `scope_chain`. Fixes #3882.