aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation.rb
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2015-12-14 09:48:34 -0700
committerSean Griffin <sean@seantheprogrammer.com>2015-12-14 09:51:56 -0700
commit6d5b1fdf55611de2a1071c37544933bb588ae88e (patch)
tree30ce4485d5a5a91edcada087b7d8c53a6c48b896 /activerecord/lib/active_record/relation.rb
parent757a566657d2b55d1587e09c384b1b413c2a8699 (diff)
downloadrails-6d5b1fdf55611de2a1071c37544933bb588ae88e.tar.gz
rails-6d5b1fdf55611de2a1071c37544933bb588ae88e.tar.bz2
rails-6d5b1fdf55611de2a1071c37544933bb588ae88e.zip
Perform a more efficient query in `Relation#any?`
This was changed in 421c81b, as `exists?` blows up if you are eager loading a polymorphic association, as it'll try to construct a join to that table. The previous change decided to execute a `count` instead, which wouldn't join. Of course, the only time we actually need to perform a join on the eager loaded values (which would perform a left outer join) is if they're being referenced in the where clause. This doesn't affect inner joins.
Diffstat (limited to 'activerecord/lib/active_record/relation.rb')
-rw-r--r--activerecord/lib/active_record/relation.rb7
1 files changed, 1 insertions, 6 deletions
diff --git a/activerecord/lib/active_record/relation.rb b/activerecord/lib/active_record/relation.rb
index 2cf19c76c5..6728443251 100644
--- a/activerecord/lib/active_record/relation.rb
+++ b/activerecord/lib/active_record/relation.rb
@@ -271,12 +271,7 @@ module ActiveRecord
def empty?
return @records.empty? if loaded?
- if limit_value == 0
- true
- else
- c = count(:all)
- c.respond_to?(:zero?) ? c.zero? : c.empty?
- end
+ limit_value == 0 || !exists?
end
# Returns true if there are no records.