1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Ensure AR#sum result is typecasted properly

This commit is contained in:
Pratik Naik 2008-06-02 20:40:25 +01:00
parent 952ec79bec
commit bd75a722a2
2 changed files with 8 additions and 2 deletions

View file

@ -265,8 +265,9 @@ module ActiveRecord
def type_cast_calculated_value(value, column, operation = nil)
operation = operation.to_s.downcase
case operation
when 'count', 'sum' then value.to_i
when 'avg' then value && value.to_f
when 'count' then value.to_i
when 'sum' then value =~ /\./ ? value.to_f : value.to_i
when 'avg' then value && value.to_f
else column ? column.type_cast(value) : value
end
end

View file

@ -102,6 +102,11 @@ class CalculationsTest < ActiveRecord::TestCase
assert_equal 0, companies(:rails_core).companies.sum(:id, :conditions => '1 = 2')
end
def test_sum_should_return_valid_values_for_decimals
NumericData.create(:bank_balance => 19.83)
assert_equal 19.83, NumericData.sum(:bank_balance)
end
def test_should_group_by_summed_field_with_conditions
c = Account.sum(:credit_limit, :conditions => 'firm_id > 1',
:group => :firm_id)