1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Extract JoinDependency#join_relation to DRY the repeated application of the #join_associations.

This commit is contained in:
Ben Woosley 2013-05-10 17:41:29 +02:00
parent 35c198ca9b
commit fba18f1994
3 changed files with 9 additions and 7 deletions

View file

@ -55,6 +55,13 @@ module ActiveRecord
join_parts.first
end
def join_relation(relation)
join_associations.each do |association|
relation = association.join_relation(relation)
end
relation
end
def columns
join_parts.collect { |join_part|
table = join_part.aliased_table

View file

@ -225,10 +225,7 @@ module ActiveRecord
def apply_join_dependency(relation, join_dependency)
relation = relation.except(:includes, :eager_load, :preload)
join_dependency.join_associations.each do |association|
relation = association.join_relation(relation)
end
relation = join_dependency.join_relation(relation)
if using_limitable_reflections?(join_dependency.reflections)
relation

View file

@ -94,9 +94,7 @@ module ActiveRecord
[])
relation.joins! rest
join_dependency.join_associations.each do |association|
@relation = association.join_relation(relation)
end
@relation = join_dependency.join_relation(relation)
end
end