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
*
Don't use Enumerable#next in pluck since it is very slow
Ryan Wallace
2013-08-30
1
-2
/
+1
*
re-introduce `select_for_count` private method.
Yves Senn
2013-07-14
1
-5
/
+10
*
no need to to_sym the column name, leave it as-is
Aaron Patterson
2013-07-02
1
-1
/
+1
*
avoid intermediate zipped array
Aaron Patterson
2013-07-01
1
-3
/
+2
*
make the identity type a singleton to save on object creation
Aaron Patterson
2013-07-01
1
-3
/
+1
*
only deal with strings internally
Aaron Patterson
2013-07-01
1
-3
/
+3
*
build an AST rather than slapping strings together
Aaron Patterson
2013-07-01
1
-11
/
+7
*
stop exposing the underlying alias datastructure
Aaron Patterson
2013-07-01
1
-4
/
+4
*
Remove deprecated `:distinct` option from `Relation#count`.
Yves Senn
2013-07-01
1
-5
/
+0
*
Simplify/fix implementation of default scopes
Jon Leighton
2013-06-28
1
-9
/
+3
*
Remove fall back and column restrictions for `count`.
Yves Senn
2013-06-09
1
-10
/
+6
*
Merge pull request #10561 from Empact/nix-throwresult
Jon Leighton
2013-06-07
1
-2
/
+0
|
\
|
*
Rather than raising ThrowResult when construct_limited_ids_conditions comes u...
Ben Woosley
2013-05-10
1
-4
/
+0
|
*
Fix that #pluck wasn't rescuing ThrowResult, meaning it would blow up when fa...
Ben Woosley
2013-05-10
1
-0
/
+2
*
|
Remove #sum with a block was deprecated.
kennyj
2013-06-01
1
-9
/
+1
|
/
*
Handle aliased attributes in ActiveRecord::Relation.
Godfrey Chan
2013-05-01
1
-8
/
+18
*
Prefer find_by over dynamic finders in rdoc
Sam Ruby
2013-04-02
1
-1
/
+1
*
Merge branch 'master' of github.com:lifo/docrails
Vijay Dev
2013-03-30
1
-1
/
+1
|
\
|
*
Uniq cannot be used directly on an ActiveRecord model. 'DISTINCT field' is th...
Daniel Lobato
2013-03-12
1
-1
/
+1
*
|
Deprecate the `:distinct` option for `Relation#count`.
Yves Senn
2013-03-15
1
-2
/
+7
*
|
rename `Relation#uniq` to `Relation#distinct`. `#uniq` still works.
Yves Senn
2013-03-15
1
-2
/
+2
|
/
*
copy edits [ci skip]
Vijay Dev
2013-02-15
1
-1
/
+1
*
Add ActiveRecord.count documentation when used on group relations
Maurizio De Santis
2013-02-07
1
-0
/
+6
*
`#count` in conjunction with `#uniq` performs distinct count.
Yves Senn
2013-01-26
1
-1
/
+2
*
Revert "Merge pull request #8989 from robertomiranda/use-rails-4-find-by"
Guillermo Iguaran
2013-01-18
1
-1
/
+1
*
User Rails 4 find_by
robertomiranda
2013-01-18
1
-1
/
+1
*
These are already required through AS/rails
Akira Matsuda
2013-01-07
1
-2
/
+0
*
warning removed: shadowing outer local variable
Arun Agrawal
2012-12-30
1
-2
/
+2
*
fix time typcasting on group counts in PG
Aaron Patterson
2012-12-28
1
-2
/
+5
*
mysql does not return alias names, so fall back
Aaron Patterson
2012-12-28
1
-4
/
+10
*
fix PG typecasting errors
Aaron Patterson
2012-12-28
1
-2
/
+5
*
Cleans and removes useless 'Examples' tag [ci skip]
Alvaro Pereyra
2012-12-01
1
-7
/
+2
*
copy edits [ci skip]
Vijay Dev
2012-12-01
1
-1
/
+1
*
Fix Calculations#pluck doc to mention several attributes can be selected [ci ...
Florent Guilleux
2012-12-01
1
-3
/
+3
*
Deprecate Relation#sum with a block.
Carlos Antonio da Silva
2012-11-21
1
-0
/
+6
*
Revert "Yield only one argument instead of splatting."
Carlos Antonio da Silva
2012-11-21
1
-14
/
+3
*
Remove not used require and some useless test comments
Carlos Antonio da Silva
2012-11-17
1
-2
/
+0
*
Merge branch 'master' of github.com:lifo/docrails
Vijay Dev
2012-11-17
1
-1
/
+1
|
\
|
*
1.9 Syntax related changes
AvnerCohen
2012-11-10
1
-1
/
+1
*
|
arel columns can be used for grouping so that "weird" column names are usable
Aaron Patterson
2012-11-15
1
-0
/
+4
*
|
stop hardcoding FrontBase adapter conditionals
Aaron Patterson
2012-11-15
1
-1
/
+1
*
|
stop passing *args to generate aliases
Aaron Patterson
2012-11-15
1
-4
/
+2
*
|
create fewer relation objects
Aaron Patterson
2012-11-15
1
-3
/
+6
*
|
`#pluck` can be used on a relation with `select` clause.
Yves Senn
2012-11-12
1
-1
/
+3
|
/
*
use columns hash to look up the column for the count field
Aaron Patterson
2012-10-17
1
-1
/
+1
*
ActiveRecord: sum expression returns string '0' for no records, fixed
Tim Macfarlane
2012-10-15
1
-1
/
+1
*
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
[next]