1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/lib/active_record/relation
Sean Griffin c80487eb1a Don't rely on relation mutability when building through associations
Specifically, the issue is relying on `where_unscoping` mutating the
where values. It does not, however, mutate the bind values, which could
cause an error under certain circumstances. This was not exposed by the
tests, since the only place which would have been affected is unscoping
a boolean, which doesn't go through prepared statements. I had a hard
time getting better test coverage to demonstrate the issue.

This in turn, caused `merge` to go through proper logic, and try to
clear out the binds associated with the unscoped relation, which then
exposed a source of `nil` for the columns, as binds weren't expanding
`{ "posts.id" => 1 }` to `{ "posts" => { "id" => 1 } }`. This has been
fixed.

The bulk of `create_binds` needed to be moved to a separate method,
since the dot notation should not be expanded recursively.

I'm pretty sure this removes a subtle quirk that a ton of code in
`Relation::Merger` is working around, and I suspect that code can be
greatly simplified. However, unraveling that rats nest is no small task.
2015-01-24 19:51:26 -07:00
..
predicate_builder Remove unneeded requires 2015-01-04 12:11:03 -03:00
batches.rb
calculations.rb
delegation.rb Remove unneeded require 'as/deprecation' 2015-01-04 07:45:07 -08:00
finder_methods.rb Don't remove join dependencies in Relation#exists? 2015-01-23 12:05:14 -07:00
merger.rb Don't duplicate Relation::VALUE_METHODS in Relation::Merger 2015-01-24 18:49:49 -07:00
predicate_builder.rb Don't rely on relation mutability when building through associations 2015-01-24 19:51:26 -07:00
query_methods.rb Fix bind value copying from subqueried relations 2015-01-19 15:19:43 -07:00
spawn_methods.rb