diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb index c0b8e7e14f1b38378d853726ff0a2683cf57a92b..73bd407f8f00aa5d965080a34eac986ab5101b99 100755 --- a/activerecord/lib/active_record/base.rb +++ b/activerecord/lib/active_record/base.rb @@ -649,7 +649,7 @@ def find(*args) when :last find_last(options) when :all - find_every(options) + construct_finder_arel_with_includes(options).all else construct_finder_arel_with_includes(options).find(*args) end