Skip to content

Commit

Permalink
Merge pull request #14045 from arthurnn/kill_fibers
Browse files Browse the repository at this point in the history
Dont use Enumarator on join_association
  • Loading branch information
guilleiguaran committed Feb 13, 2014
2 parents f2dfa83 + c387252 commit 24fc74c
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -25,7 +25,8 @@ def join_constraints(foreign_table, foreign_klass, node, join_type, tables, scop
joins = []
tables = tables.reverse

scope_chain_iter = scope_chain.reverse_each
scope_chain_index = 0
scope_chain = scope_chain.reverse

# The chain starts with the target table, but we want to end with it here (makes
# more sense in this context), so we reverse
Expand All @@ -44,13 +45,14 @@ def join_constraints(foreign_table, foreign_klass, node, join_type, tables, scop

constraint = build_constraint(klass, table, key, foreign_table, foreign_key)

scope_chain_items = scope_chain_iter.next.map do |item|
scope_chain_items = scope_chain[scope_chain_index].map do |item|
if item.is_a?(Relation)
item
else
ActiveRecord::Relation.create(klass, table).instance_exec(node, &item)
end
end
scope_chain_index += 1

scope_chain_items.concat [klass.send(:build_default_scope)].compact

Expand Down

0 comments on commit 24fc74c

Please sign in to comment.