diff options
author | Ernie Miller <ernie@erniemiller.org> | 2012-06-24 08:39:54 -0400 |
---|---|---|
committer | Ernie Miller <ernie@erniemiller.org> | 2012-06-24 08:39:54 -0400 |
commit | a1c05dd8b9bd3623289d3aa73dda2943d620cc34 (patch) | |
tree | bac4f4dfbc8d6a460b5185227fb5a8f7da342371 /activerecord/test/cases | |
parent | ebe8a45444fb42b42768fba826f56a498c8b389a (diff) | |
download | rails-a1c05dd8b9bd3623289d3aa73dda2943d620cc34.tar.gz rails-a1c05dd8b9bd3623289d3aa73dda2943d620cc34.tar.bz2 rails-a1c05dd8b9bd3623289d3aa73dda2943d620cc34.zip |
Stop assuming strings for grouped calculations
Execute_grouped_calculation is one of those places where
ActiveRecord forgets that it has ARel underpinnings, and
assumes that the values provided to group_values are
strings. This artificially hobbles otherwise functional
code. This patch stops assuming that incoming values
respond to to_sym, stops using string interpolation for
table aliases on objects that support aliasing, and stops
unnecessarily joining group_values on the relation.
Additionally, it calls to_sql, if available, on objects
sent to column_alias_for, in order to get a more reasonable
alias string than a non-string's default to_str method.
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r-- | activerecord/test/cases/calculations_test.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/test/cases/calculations_test.rb b/activerecord/test/cases/calculations_test.rb index 4df613488a..b766b92007 100644 --- a/activerecord/test/cases/calculations_test.rb +++ b/activerecord/test/cases/calculations_test.rb @@ -61,6 +61,11 @@ class CalculationsTest < ActiveRecord::TestCase [1,6,2].each { |firm_id| assert c.keys.include?(firm_id) } end + def test_should_group_by_arel_attribute + c = Account.sum(:credit_limit, :group => Account.arel_table[:firm_id]) + [1,6,2].each { |firm_id| assert c.keys.include?(firm_id) } + end + def test_should_group_by_multiple_fields c = Account.group('firm_id', :credit_limit).count(:all) [ [nil, 50], [1, 50], [6, 50], [6, 55], [9, 53], [2, 60] ].each { |firm_and_limit| assert c.keys.include?(firm_and_limit) } |