aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/calculations_test.rb
diff options
context:
space:
mode:
authorFadzril Muhamad & Joseph Palermo <pair+fadzril+jpalermo@pivotallabs.com>2011-05-11 17:19:06 +0800
committerJoseph Palermo <pair+jpalermo@pivotallabs.com>2011-05-12 04:05:24 +0800
commit1db49ced45819c7284dfd63aad791ead3a26203e (patch)
tree878f17aa7ac3fbc1fc9c068ea43ce4d2e6ebc98a /activerecord/test/cases/calculations_test.rb
parent1dd90f8f12d1904ee3db37f9390df3246bb2712b (diff)
downloadrails-1db49ced45819c7284dfd63aad791ead3a26203e.tar.gz
rails-1db49ced45819c7284dfd63aad791ead3a26203e.tar.bz2
rails-1db49ced45819c7284dfd63aad791ead3a26203e.zip
Bug fixes:
- If doing a count on a relation that has an :include and a :join, it does a distinct even though it should not. - When doing a count on a relation that has an :include, it always falls back to a old style left join when performing the count. Looks like it was broken here: https://github.com/rails/rails/commit/b9599502c9e738a5a1513e75d08f8d40ed408265
Diffstat (limited to 'activerecord/test/cases/calculations_test.rb')
-rw-r--r--activerecord/test/cases/calculations_test.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/activerecord/test/cases/calculations_test.rb b/activerecord/test/cases/calculations_test.rb
index 654c4c9010..56f6d795b6 100644
--- a/activerecord/test/cases/calculations_test.rb
+++ b/activerecord/test/cases/calculations_test.rb
@@ -319,6 +319,17 @@ class CalculationsTest < ActiveRecord::TestCase
assert_equal 4, Account.count(:distinct => true, :include => :firm, :select => :credit_limit)
end
+ def test_should_not_perform_joined_include_by_default
+ assert_equal Account.count, Account.includes(:firm).count
+ queries = assert_sql { Account.includes(:firm).count }
+ assert_no_match(/join/i, queries.last)
+ end
+
+ def test_should_perform_joined_include_when_referencing_included_tables
+ joined_count = Account.includes(:firm).where(:companies => {:name => '37signals'}).count
+ assert_equal 1, joined_count
+ end
+
def test_should_count_scoped_select
Account.update_all("credit_limit = NULL")
assert_equal 0, Account.scoped(:select => "credit_limit").count