aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/join_dependency
diff options
context:
space:
mode:
authorMatt Jones <al2o3cr@gmail.com>2014-02-21 17:58:40 -0500
committerMatt Jones <al2o3cr@gmail.com>2014-02-21 17:58:40 -0500
commit70a5e5638bfd3b2543bb9d4805cbefec84b6b1ce (patch)
treea0d586612e71950a8dca78b1aa21ea0a0f0cf83f /activerecord/lib/active_record/associations/join_dependency
parent467cb908dd5f40cbfefe41b93e219682a3ced535 (diff)
downloadrails-70a5e5638bfd3b2543bb9d4805cbefec84b6b1ce.tar.gz
rails-70a5e5638bfd3b2543bb9d4805cbefec84b6b1ce.tar.bz2
rails-70a5e5638bfd3b2543bb9d4805cbefec84b6b1ce.zip
Pass a base relation to build_default_scope when joining
This allows the default scope to be built using the current table alias. Resolves #12770
Diffstat (limited to 'activerecord/lib/active_record/associations/join_dependency')
-rw-r--r--activerecord/lib/active_record/associations/join_dependency/join_association.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/join_dependency/join_association.rb b/activerecord/lib/active_record/associations/join_dependency/join_association.rb
index cee3c9999f..1d923ecc09 100644
--- a/activerecord/lib/active_record/associations/join_dependency/join_association.rb
+++ b/activerecord/lib/active_record/associations/join_dependency/join_association.rb
@@ -54,7 +54,7 @@ module ActiveRecord
end
scope_chain_index += 1
- scope_chain_items.concat [klass.send(:build_default_scope)].compact
+ scope_chain_items.concat [klass.send(:build_default_scope, ActiveRecord::Relation.create(klass, table))].compact
rel = scope_chain_items.inject(scope_chain_items.shift) do |left, right|
left.merge right