index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
activerecord
/
lib
/
active_record
/
relation
/
calculations.rb
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix pluck when columns/tables are reserved words.
Ian Lesperance
2012-09-05
1
-1
/
+1
*
load active_support/core_ext/object/blank in active_support/rails
Xavier Noria
2012-08-02
1
-1
/
+0
*
Ensure Arel columns are typecasted properly when grouping with calculation
Carlos Antonio da Silva
2012-06-25
1
-6
/
+6
*
Stop assuming strings for grouped calculations
Ernie Miller
2012-06-24
1
-6
/
+17
*
Add changelog entry and guide updates for pluck with multiple columns
Carlos Antonio da Silva
2012-06-22
1
-0
/
+1
*
Refactor pluck with multiple columns
Carlos Antonio da Silva
2012-06-22
1
-26
/
+13
*
ActiveRecord#pluck now accepts multiple columns
jeroeningen
2012-06-22
1
-15
/
+35
*
Extract conditional to a method to avoid duplication
Rafael Mendonça França
2012-06-19
1
-15
/
+19
*
handle joins/includes correctly for pluck and calculation.
Andrey Deryabin
2012-06-19
1
-1
/
+6
*
Fix wrong example for count method with block [ci skip]
Carlos Antonio da Silva
2012-05-31
1
-1
/
+1
*
Merge branch 'master' of github.com:lifo/docrails
Vijay Dev
2012-05-30
1
-1
/
+1
|
\
|
*
"a sql" -> "an SQL" per API documentation guidelines
Mark Rushakoff
2012-05-27
1
-1
/
+1
*
|
Yield only one argument instead of splatting.
Carlos Antonio da Silva
2012-05-28
1
-2
/
+2
*
|
Allow blocks for count with ActiveRecord::Relation. Document and test that su...
chrisfinne
2012-05-28
1
-3
/
+14
|
/
*
assuming there is only one column, we can simplify the type cast loop
Aaron Patterson
2012-05-16
1
-7
/
+6
*
MySQL returns "SUM(DISTINCT(credit_limit))" as the column name unless
Aaron Patterson
2012-05-16
1
-4
/
+11
*
Fixes issue where SQL fragments prevented type casting based on column type.
Erich Menge
2012-05-16
1
-8
/
+3
*
Expand and improve #pluck docs
Jeremy Kemper
2012-05-15
1
-6
/
+27
*
Restore support for Model.pluck('sql fragment')
Jeremy Kemper
2012-05-15
1
-1
/
+2
*
Lowercase.
Ben Pickles
2012-05-01
1
-1
/
+1
*
Add ActiveRecord::Base#ids
twinturbo
2012-04-30
1
-0
/
+10
*
extract deprecated #calculate code
Jon Leighton
2012-04-13
1
-83
/
+25
*
use a hash to store relation values
Jon Leighton
2012-04-13
1
-5
/
+5
*
Missing generated query for pluck method.
Juanjo Bazán
2012-03-27
1
-1
/
+1
*
Merge pull request #4984 from raghunadhd/change_orderhash
Vijay Dev
2012-03-03
1
-1
/
+1
|
\
|
*
Refactored code
Raghunadh
2012-02-10
1
-1
/
+1
*
|
use bind values for join columns
Aaron Patterson
2012-02-27
1
-3
/
+4
*
|
typecast columns based on the returned types
Aaron Patterson
2012-02-09
1
-2
/
+14
|
/
*
AR::Relation#pluck: improve to work with joins
Bogdan Gusiev
2012-02-08
1
-0
/
+3
*
rewrites a couple of alternations in regexps as character classes
Xavier Noria
2012-01-30
1
-1
/
+1
*
Delete unnecessary line that was necessary before I changed the code and it b...
Jon Leighton
2011-12-22
1
-1
/
+0
*
Make ActiveRecord::Relation#pluck work with serialized attributes
Jon Leighton
2011-12-22
1
-4
/
+4
*
ActiveRecord::Relation#pluck method
Bogdan Gusiev
2011-11-30
1
-0
/
+17
*
Make it the responsibility of the connection to hold onto an ARel visitor for...
Jon Leighton
2011-08-08
1
-2
/
+2
*
Fixed failing query when performing calculation with having based on select.
Dmitriy Kiriyenko
2011-07-27
1
-0
/
+1
*
Fixed AR::Relation#sum compatibility with Array#sum
Bogdan Gusiev
2011-07-05
1
-2
/
+6
*
Apply the default scope earlier when doing calculations. Fixes #1682.
Jon Leighton
2011-06-23
1
-5
/
+11
*
Ensure that calculations properly override the select value even if it's set ...
Jon Leighton
2011-05-31
1
-2
/
+2
*
Remove extra white spaces on ActiveRecord docs.
Sebastian Martinez
2011-05-23
1
-4
/
+4
*
Bug fixes:
Fadzril Muhamad & Joseph Palermo
2011-05-12
1
-5
/
+4
*
Ensure that ORDER BY clauses from default scopes are not included in calculat...
Jon Leighton
2011-05-08
1
-1
/
+1
*
Use Arel to build subquery. Adapt tests to changed fixtures.
John Mileham
2011-03-24
1
-13
/
+12
*
Change behavior of count(:limit => x, :offset => y) to limit/offset before co...
John Mileham
2011-03-03
1
-14
/
+26
*
removing limits and offsets from COUNT queries unless both are specified. [#6...
Aaron Patterson
2011-02-25
1
-1
/
+13
*
The type_cast_calculated_value method will trust DB types before casting to a...
Ken Collins
2011-02-03
1
-1
/
+1
*
Always return decimal average of integer fields
Raimonds Simanovskis
2011-01-10
1
-9
/
+5
*
ActiveRecord::Relation#primary_key should return a string, just like ActiveRe...
Jon Leighton
2011-01-03
1
-1
/
+1
*
Rename AssociationReflection#primary_key_name to foreign_key, since the optio...
Jon Leighton
2010-12-31
1
-1
/
+1
*
just grep the AST for OuterJoin nodes rather than converting the tree to SQL
Aaron Patterson
2010-11-30
1
-1
/
+1
*
reduce method calls on arel
Aaron Patterson
2010-11-30
1
-1
/
+1
[next]