method
build_joins
v7.1.3.2 -
Show latest stable
-
0 notes -
Class: ActiveRecord::QueryMethods
- 1.0.0
- 1.1.6
- 1.2.6
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.8
- 3.0.0 (0)
- 3.0.9 (0)
- 3.1.0 (0)
- 3.2.1 (0)
- 3.2.8 (0)
- 3.2.13 (0)
- 4.0.2 (0)
- 4.1.8 (0)
- 4.2.1 (0)
- 4.2.7 (0)
- 4.2.9 (0)
- 5.0.0.1 (0)
- 5.1.7 (0)
- 5.2.3 (0)
- 6.0.0 (0)
- 6.1.3.1 (0)
- 6.1.7.7 (0)
- 7.0.0 (0)
- 7.1.3.2 (0)
- 7.1.3.4 (0)
- What's this?
build_joins(join_sources, aliases = nil)
private
Hide source
# File activerecord/lib/active_record/relation/query_methods.rb, line 1709 def build_joins(join_sources, aliases = nil) return join_sources if joins_values.empty? && left_outer_joins_values.empty? buckets, join_type = build_join_buckets named_joins = buckets[:named_join] stashed_joins = buckets[:stashed_join] leading_joins = buckets[:leading_join] join_nodes = buckets[:join_node] join_sources.concat(leading_joins) unless leading_joins.empty? unless named_joins.empty? && stashed_joins.empty? alias_tracker = alias_tracker(leading_joins + join_nodes, aliases) join_dependency = construct_join_dependency(named_joins, join_type) join_sources.concat(join_dependency.join_constraints(stashed_joins, alias_tracker, references_values)) end join_sources.concat(join_nodes) unless join_nodes.empty? join_sources end