| Commit message (Expand) | Author | Age | Files | Lines |
* | Break up DependencyModule's dual function of providing a "depend_on" DSL and ... | Joshua Peek | 2009-05-28 | 1 | -1/+1 |
* | Use DependencyModule for included hooks in ActiveRecord | Bryan Helmkamp | 2009-05-11 | 1 | -3/+2 |
* | Ensure calculations respect scoped :select [#1334 state:resolved] | stopdropandrew | 2009-03-07 | 1 | -5/+13 |
* | Allow :having conditions to be sanitized like regular :condition. [#2158 stat... | Will Bryant | 2009-03-06 | 1 | -3/+5 |
* | Merge docrails | Pratik Naik | 2009-01-18 | 1 | -8/+16 |
* | Make sure any Fixnum returned by a DB sum is type cast to a Float before stan... | Ken Collins | 2008-11-13 | 1 | -1/+1 |
* | Add simple case when DB calculations returns 0 instead of 0.0 [#1346 state:re... | Joshua Peek | 2008-11-10 | 1 | -1/+1 |
* | If average value from DB is 0, make sure to convert it to a 0.0 float before ... | Ken Collins | 2008-11-07 | 1 | -1/+1 |
* | Ensure Model.sum and Model.avg typecast appropriately. [#1066 state:resolved] | Pratik Naik | 2008-10-04 | 1 | -3/+7 |
* | Remove AS for oracle compatibility | Michael Koziarski | 2008-10-03 | 1 | -1/+1 |
* | Interpolation requires double quotes | Michael Koziarski | 2008-09-09 | 1 | -1/+1 |
* | Merge docrails | Pratik Naik | 2008-09-03 | 1 | -2/+2 |
* | Merge scoped :joins together instead of overwriting them. May expose scoping ... | Andrew White | 2008-08-28 | 1 | -1/+1 |
* | Alias included associations if needed when doing a count | Tarmo Tänav | 2008-08-27 | 1 | -2/+8 |
* | Performance: reduce garbage created by ActiveRecord::Calculations#column_alia... | Joshua Peek | 2008-08-26 | 1 | -1/+8 |
* | Alias subquery used in calculations, to provide better compatibility with dat... | Michalis Polakis | 2008-08-11 | 1 | -1/+1 |
* | Add :from option to calculations. [#397 state:resolved] | Ben Munat | 2008-06-11 | 1 | -3/+9 |
* | Ensure AR#sum result is typecasted properly | Pratik Naik | 2008-06-02 | 1 | -2/+3 |
* | Ensure Associations#sum returns 0 when no rows are returned. [#295 state:reso... | Jonathan Viney | 2008-06-02 | 1 | -3/+3 |
* | Merge docrails. | Pratik Naik | 2008-05-25 | 1 | -10/+12 |
* | Improve documentation coverage and markup | Xavier Noria | 2008-05-02 | 1 | -6/+6 |
* | Avoid adding two DISTINCT statements to queries in sqlite 2. | Frederick Cheung | 2008-04-21 | 1 | -1/+1 |
* | ActiveRecord::Base#sum defaults to 0 if no rows are returned. Closes #11550 ... | Rick Olson | 2008-04-08 | 1 | -1/+1 |
* | Don't double include DISTINCT when the user has already specified it. Closes... | Michael Koziarski | 2008-04-04 | 1 | -1/+4 |
* | Ensure that you can still do expressions in calculations (closes #11355) [nbu... | David Heinemeier Hansson | 2008-03-17 | 1 | -1/+2 |
* | Ensure that ActiveRecord::Calculations disambiguates field names with the tab... | Rick Olson | 2008-03-13 | 1 | -0/+1 |
* | Fix calculations on associations with custom :foreign_key. Closes #8117 [kama... | Jeremy Kemper | 2008-02-02 | 1 | -1/+1 |
* | Ruby 1.9 compat: calculations don't assume array implementation of ordered ha... | Jeremy Kemper | 2007-12-27 | 1 | -1/+2 |
* | Remove references to nonexistent :joins documentation. Closes #10498 [tpope] | Marcel Molina | 2007-12-13 | 1 | -4/+2 |
* | Document how the :include option can be used in Calculations::calculate. Clo... | Marcel Molina | 2007-12-05 | 1 | -0/+2 |
* | Smattering of grammatical fixes to documentation. Closes #10083 [BobSilva] | Marcel Molina | 2007-11-08 | 1 | -10/+13 |
* | Address shortcomings of changeset [8054] [protocool] | David Heinemeier Hansson | 2007-11-07 | 1 | -15/+4 |
* | Standardize on using hyphens rather than colons to separate option names from... | Marcel Molina | 2007-11-06 | 1 | -6/+6 |
* | Escape table names during calculation queries. [wesley.moxam, Koz] Closes #4593 | Michael Koziarski | 2007-10-31 | 1 | -2/+2 |
* | Introduce finder :joins with associations. Same :include syntax but with inne... | Jeremy Kemper | 2007-10-29 | 1 | -4/+15 |
* | Fix and properly document/test count(column_name) usage. Closes #8999 [lifofifo] | Rick Olson | 2007-07-17 | 1 | -8/+14 |
* | Remove deprecated count(conditions=nil, joins=nil) usage. Closes #8993 [lifo... | Rick Olson | 2007-07-16 | 1 | -27/+10 |
* | Calculations support non-numeric foreign keys. Closes #8154. | Jeremy Kemper | 2007-06-01 | 1 | -1/+2 |
* | Calculations: return nil average instead of 0 when there are no rows to avera... | Jeremy Kemper | 2007-05-30 | 1 | -1/+1 |
* | documentation project patches, closes #7342, #7319, #7316, #7190 [jeremymcana... | Rick Olson | 2007-03-27 | 1 | -2/+2 |
* | SQLite: count(distinct) queries supported in >= 3.2.6, fix calculations worka... | Jeremy Kemper | 2006-11-05 | 1 | -14/+21 |
* | Include caller of deprecated count method. | Jeremy Kemper | 2006-09-29 | 1 | -2/+3 |
* | Deprecation: count class method should be called with an options hash rather ... | Jeremy Kemper | 2006-09-26 | 1 | -14/+23 |
* | Fixed that count distinct should use the selected column even when using :inc... | David Heinemeier Hansson | 2006-06-03 | 1 | -1/+1 |
* | Namespaced OrderedHash so the Rails implementation does not clash with any ot... | Rick Olson | 2006-04-30 | 1 | -1/+1 |
* | When grouping, use the appropriate option key. [Marcel Molina Jr.] | Marcel Molina | 2006-04-28 | 1 | -1/+5 |
* | Add support for FrontBase (http://www.frontbase.com/) with a new adapter than... | Marcel Molina | 2006-04-27 | 1 | -2/+12 |
* | Fix bug where calculations with long alias names return null. [Rick] | Rick Olson | 2006-04-25 | 1 | -4/+4 |
* | Allow all calculations to take the :include option, not just COUNT (closes #4... | Rick Olson | 2006-04-25 | 1 | -34/+43 |
* | Fix the HasManyAssociation#count method so it uses the new ActiveRecord::Base... | Rick Olson | 2006-04-19 | 1 | -17/+22 |