aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/calculations.rb
Commit message (Expand)AuthorAgeFilesLines
* SQLite: count(distinct) queries supported in >= 3.2.6, fix calculations worka...Jeremy Kemper2006-11-051-14/+21
* Include caller of deprecated count method.Jeremy Kemper2006-09-291-2/+3
* Deprecation: count class method should be called with an options hash rather ...Jeremy Kemper2006-09-261-14/+23
* Fixed that count distinct should use the selected column even when using :inc...David Heinemeier Hansson2006-06-031-1/+1
* Namespaced OrderedHash so the Rails implementation does not clash with any ot...Rick Olson2006-04-301-1/+1
* When grouping, use the appropriate option key. [Marcel Molina Jr.]Marcel Molina2006-04-281-1/+5
* Add support for FrontBase (http://www.frontbase.com/) with a new adapter than...Marcel Molina2006-04-271-2/+12
* Fix bug where calculations with long alias names return null. [Rick]Rick Olson2006-04-251-4/+4
* Allow all calculations to take the :include option, not just COUNT (closes #4...Rick Olson2006-04-251-34/+43
* Fix the HasManyAssociation#count method so it uses the new ActiveRecord::Base...Rick Olson2006-04-191-17/+22
* Modify ActiveRecord::Base.count so it shares the same signature as #calculate...Rick Olson2006-04-141-10/+13
* fix calculations for the Oracle Adapter (closes #4626) [Michael Schoen]Rick Olson2006-04-061-2/+2
* Enable Limit/Offset in Calculations (closes #4558) [lmarlow@yahoo.com]Rick Olson2006-04-061-1/+2
* Fixed documentationDavid Heinemeier Hansson2006-03-281-66/+66
* Making ActiveRecord faster [skaes]David Heinemeier Hansson2006-03-271-2/+3
* Add support for :include to with_scope [andrew@redlinesoftware.com]Michael Koziarski2006-03-271-2/+2
* Added Base.abstract_class? that marks which classes are not part of the Activ...Rick Olson2006-03-161-1/+1
* Allow ordering of calculated results and/or grouped fields in calculations [s...Rick Olson2006-03-141-0/+1
* Doc fix (closes #4014) [thijs@fngtps.com]David Heinemeier Hansson2006-03-021-1/+1
* Make calculations typecasty! (closes #4016) [Rick Olson]David Heinemeier Hansson2006-03-011-7/+37
* Compatibility patches for calculationsDavid Heinemeier Hansson2006-02-251-31/+27
* Added calculations: Base.count, Base.average, Base.sum, Base.minimum, Base.ma...David Heinemeier Hansson2006-02-251-0/+197