diff options
author | Boris Staal <boris@roundlake.ru> | 2012-12-20 14:26:40 +0700 |
---|---|---|
committer | Boris Staal <boris@roundlake.ru> | 2012-12-20 19:51:25 +0700 |
commit | 1a7567d2afd86e4213a9c682e1e2e9be0ff84786 (patch) | |
tree | 7ecdc5fee3e5e427ba6518392c59a7104614a9ed /activerecord/lib/active_record | |
parent | 42b555dcf3d3dfc8c4b56e6bf903389f014bf05e (diff) | |
download | rails-1a7567d2afd86e4213a9c682e1e2e9be0ff84786.tar.gz rails-1a7567d2afd86e4213a9c682e1e2e9be0ff84786.tar.bz2 rails-1a7567d2afd86e4213a9c682e1e2e9be0ff84786.zip |
Eager loading made to use relation's in_clause_length instead of host's one (fixes #8474)
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r-- | activerecord/lib/active_record/associations/preloader/association.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/preloader/association.rb b/activerecord/lib/active_record/associations/preloader/association.rb index cbf5e734ea..82588905c6 100644 --- a/activerecord/lib/active_record/associations/preloader/association.rb +++ b/activerecord/lib/active_record/associations/preloader/association.rb @@ -76,7 +76,7 @@ module ActiveRecord else # 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) + sliced = owner_keys.each_slice(klass.connection.in_clause_length || owner_keys.size) records = sliced.map { |slice| records_for(slice).to_a }.flatten end |