Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | scope_chain should not be mutated for other reflections | Neeraj Singh | 2013-10-14 | 1 | -0/+4 |
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. |