instance method build_join_query

Ruby on Rails 5.1.7

Since v5.0.7.2 Last seen in v6.0.6.1 Private — implementation detail, not part of the public API

Available in: v5.0.7.2 v5.1.7 v5.2.8.1 v6.0.6.1

Signature

build_join_query(manager, buckets, join_type)

No documentation comment.

Parameters

manager req
buckets req
join_type req
Source
# File activerecord/lib/active_record/relation/query_methods.rb, line 1006
      def build_join_query(manager, buckets, join_type)
        buckets.default = []

        association_joins         = buckets[:association_join]
        stashed_association_joins = buckets[:stashed_join]
        join_nodes                = buckets[:join_node].uniq
        string_joins              = buckets[:string_join].map(&:strip).uniq

        join_list = join_nodes + convert_join_strings_to_ast(manager, string_joins)

        join_dependency = ActiveRecord::Associations::JoinDependency.new(
          @klass,
          association_joins,
          join_list
        )

        join_infos = join_dependency.join_constraints stashed_association_joins, join_type

        join_infos.each do |info|
          info.joins.each { |join| manager.from(join) }
          manager.bind_values.concat info.binds
        end

        manager.join_sources.concat(join_list)

        manager
      end

Defined in activerecord/lib/active_record/relation/query_methods.rb line 1006 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActiveRecord::QueryMethods

Type at least 2 characters to search.

Use the arrow keys to navigate results, Enter to open one, Escape to close.

Keyboard shortcuts

/
Focus search
⌘K / Ctrl-K
Command palette
?
This help
Esc
Close