Flowdock
method

construct_relation_for_association_calculations

Importance_0
v4.1.8 - Show latest stable - 0 notes - Class: ActiveRecord::FinderMethods
construct_relation_for_association_calculations() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/relation/finder_methods.rb, line 358
    def construct_relation_for_association_calculations
      from = arel.froms.first
      if Arel::Table === from
        apply_join_dependency(self, construct_join_dependency)
      else
        # FIXME: as far as I can tell, `from` will always be an Arel::Table.
        # There are no tests that test this branch, but presumably it's
        # possible for `from` to be a list?
        apply_join_dependency(self, construct_join_dependency(from))
      end
    end
Register or log in to add new notes.