aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/calculations.rb
Commit message (Expand)AuthorAgeFilesLines
* Add :from option to calculations. [#397 state:resolved]Ben Munat2008-06-111-3/+9
* Ensure AR#sum result is typecasted properlyPratik Naik2008-06-021-2/+3
* Ensure Associations#sum returns 0 when no rows are returned. [#295 state:reso...Jonathan Viney2008-06-021-3/+3
* Merge docrails.Pratik Naik2008-05-251-10/+12
* Improve documentation coverage and markupXavier Noria2008-05-021-6/+6
* Avoid adding two DISTINCT statements to queries in sqlite 2.Frederick Cheung2008-04-211-1/+1
* ActiveRecord::Base#sum defaults to 0 if no rows are returned. Closes #11550 ...Rick Olson2008-04-081-1/+1
* Don't double include DISTINCT when the user has already specified it. Closes...Michael Koziarski2008-04-041-1/+4
* Ensure that you can still do expressions in calculations (closes #11355) [nbu...David Heinemeier Hansson2008-03-171-1/+2
* Ensure that ActiveRecord::Calculations disambiguates field names with the tab...Rick Olson2008-03-131-0/+1
* Fix calculations on associations with custom :foreign_key. Closes #8117 [kama...Jeremy Kemper2008-02-021-1/+1
* Ruby 1.9 compat: calculations don't assume array implementation of ordered ha...Jeremy Kemper2007-12-271-1/+2
* Remove references to nonexistent :joins documentation. Closes #10498 [tpope]Marcel Molina2007-12-131-4/+2
* Document how the :include option can be used in Calculations::calculate. Clo...Marcel Molina2007-12-051-0/+2
* Smattering of grammatical fixes to documentation. Closes #10083 [BobSilva]Marcel Molina2007-11-081-10/+13
* Address shortcomings of changeset [8054] [protocool]David Heinemeier Hansson2007-11-071-15/+4
* Standardize on using hyphens rather than colons to separate option names from...Marcel Molina2007-11-061-6/+6
* Escape table names during calculation queries. [wesley.moxam, Koz] Closes #4593Michael Koziarski2007-10-311-2/+2
* Introduce finder :joins with associations. Same :include syntax but with inne...Jeremy Kemper2007-10-291-4/+15
* Fix and properly document/test count(column_name) usage. Closes #8999 [lifofifo]Rick Olson2007-07-171-8/+14
* Remove deprecated count(conditions=nil, joins=nil) usage. Closes #8993 [lifo...Rick Olson2007-07-161-27/+10
* Calculations support non-numeric foreign keys. Closes #8154.Jeremy Kemper2007-06-011-1/+2
* Calculations: return nil average instead of 0 when there are no rows to avera...Jeremy Kemper2007-05-301-1/+1
* documentation project patches, closes #7342, #7319, #7316, #7190 [jeremymcana...Rick Olson2007-03-271-2/+2
* 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