aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activerecord/lib/active_record/associations/join_dependency.rb30
1 files changed, 15 insertions, 15 deletions
diff --git a/activerecord/lib/active_record/associations/join_dependency.rb b/activerecord/lib/active_record/associations/join_dependency.rb
index 8b0e469a98..6d3b1b6b3b 100644
--- a/activerecord/lib/active_record/associations/join_dependency.rb
+++ b/activerecord/lib/active_record/associations/join_dependency.rb
@@ -182,24 +182,24 @@ module ActiveRecord
end
def construct(parent, associations, join_parts, row)
- case associations
- when Symbol, String
- name = associations.to_s
+ associations.sort_by { |k,_| k.to_s }.each do |association_name, assoc|
+ association = construct_scalar(parent, association_name, join_parts, row)
+ construct(association, assoc, join_parts, row) if association
+ end
+ end
- join_part = join_parts.detect { |j|
- j.reflection.name.to_s == name &&
- j.parent_table_name == parent.class.table_name }
+ def construct_scalar(parent, associations, join_parts, row)
+ name = associations.to_s
- raise(ConfigurationError, "No such association") unless join_part
+ join_part = join_parts.detect { |j|
+ j.reflection.name.to_s == name &&
+ j.parent_table_name == parent.class.table_name
+ }
- join_parts.delete(join_part)
- construct_association(parent, join_part, row)
- when Hash
- associations.sort_by { |k,_| k.to_s }.each do |association_name, assoc|
- association = construct(parent, association_name, join_parts, row)
- construct(association, assoc, join_parts, row) if association
- end
- end
+ raise(ConfigurationError, "No such association") unless join_part
+
+ join_parts.delete(join_part)
+ construct_association(parent, join_part, row)
end
def construct_association(record, join_part, row)