aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2012-03-30 16:18:39 +0100
committerJon Leighton <j@jonathanleighton.com>2012-03-30 16:24:41 +0100
commitdffbb521a0d00c8673a3ad6e0e8ff526f32daf4e (patch)
tree12d52e67f25c017fb96a1f116f757d6742ef8173 /activerecord/lib
parent13fe1903d89fa9345a9f0b17de2d31e8b7ef2b1d (diff)
downloadrails-dffbb521a0d00c8673a3ad6e0e8ff526f32daf4e.tar.gz
rails-dffbb521a0d00c8673a3ad6e0e8ff526f32daf4e.tar.bz2
rails-dffbb521a0d00c8673a3ad6e0e8ff526f32daf4e.zip
Fix #5667. Preloading should ignore scoping.
Conflicts: activerecord/test/cases/associations/eager_test.rb
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/associations/preloader/association.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/associations/preloader/association.rb b/activerecord/lib/active_record/associations/preloader/association.rb
index 779f8164cc..ab50e43ea0 100644
--- a/activerecord/lib/active_record/associations/preloader/association.rb
+++ b/activerecord/lib/active_record/associations/preloader/association.rb
@@ -77,7 +77,7 @@ module ActiveRecord
# Some databases impose a limit on the number of ids in a list (in Oracle it's 1000)
# Make several smaller queries if necessary or make one query if the adapter supports it
sliced = owner_keys.each_slice(model.connection.in_clause_length || owner_keys.size)
- records = sliced.map { |slice| records_for(slice) }.flatten
+ records = sliced.map { |slice| records_for(slice).to_a }.flatten
end
# Each record may have multiple owners, and vice-versa
@@ -93,7 +93,8 @@ module ActiveRecord
end
def build_scope
- scope = klass.scoped
+ scope = klass.unscoped
+ scope.default_scoped = true
scope = scope.where(process_conditions(options[:conditions]))
scope = scope.where(process_conditions(preload_options[:conditions]))