提交 84499eb4 编写于 作者: A Aaron Patterson

decouple JoinAssociation from JoinDependency

上级 bf8628df
...@@ -176,7 +176,7 @@ def build_join_association(reflection, parent, join_type) ...@@ -176,7 +176,7 @@ def build_join_association(reflection, parent, join_type)
raise EagerLoadPolymorphicError.new(reflection) raise EagerLoadPolymorphicError.new(reflection)
end end
JoinAssociation.new(reflection, self, parent, join_type) JoinAssociation.new(reflection, join_parts.length, parent, join_type, alias_tracker)
end end
def construct(parent, associations, join_parts, row, rs) def construct(parent, associations, join_parts, row, rs)
......
...@@ -9,11 +9,6 @@ class JoinAssociation < JoinPart # :nodoc: ...@@ -9,11 +9,6 @@ class JoinAssociation < JoinPart # :nodoc:
# The reflection of the association represented # The reflection of the association represented
attr_reader :reflection attr_reader :reflection
# The JoinDependency object which this JoinAssociation exists within. This is mainly
# relevant for generating aliases which do not conflict with other joins which are
# part of the query.
attr_reader :join_dependency
# A JoinBase instance representing the active record we are joining onto. # A JoinBase instance representing the active record we are joining onto.
# (So in Author.has_many :posts, the Author would be that base record.) # (So in Author.has_many :posts, the Author would be that base record.)
attr_reader :parent attr_reader :parent
...@@ -25,18 +20,18 @@ class JoinAssociation < JoinPart # :nodoc: ...@@ -25,18 +20,18 @@ class JoinAssociation < JoinPart # :nodoc:
attr_reader :aliased_prefix attr_reader :aliased_prefix
attr_reader :tables attr_reader :tables
attr_reader :alias_tracker
delegate :options, :through_reflection, :source_reflection, :chain, :to => :reflection delegate :options, :through_reflection, :source_reflection, :chain, :to => :reflection
delegate :alias_tracker, :to => :join_dependency
def initialize(reflection, join_dependency, parent, join_type) def initialize(reflection, index, parent, join_type, alias_tracker)
super(reflection.klass) super(reflection.klass)
@reflection = reflection @reflection = reflection
@join_dependency = join_dependency @alias_tracker = alias_tracker
@parent = parent @parent = parent
@join_type = join_type @join_type = join_type
@aliased_prefix = "t#{ join_dependency.join_parts.size }" @aliased_prefix = "t#{ index }"
@tables = construct_tables.reverse @tables = construct_tables.reverse
end end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册