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.rb
Commit message (
Expand
)
Author
Age
Files
Lines
*
delete_all raise an error if a limit is provided - fixes #4979
Francesco Rodriguez
2012-04-30
1
-0
/
+2
*
extract #with_scope and #with_exclusive_scope to active_record_deprecated_fin...
Jon Leighton
2012-04-25
1
-1
/
+4
*
move some of the update_all implementation to active_record_deprecated_finders
Jon Leighton
2012-04-13
1
-27
/
+14
*
now we can just manipulate the values hash in #only and #except
Jon Leighton
2012-04-13
1
-4
/
+8
*
use a hash to store relation values
Jon Leighton
2012-04-13
1
-15
/
+12
*
Make Relation#extending work like other value methods
Jon Leighton
2012-04-13
1
-3
/
+4
*
assert valid keys
Jon Leighton
2012-04-13
1
-0
/
+2
*
Allow Relation#merge to take a hash
Jon Leighton
2012-04-13
1
-1
/
+1
*
we have no need for the ASSOCIATION_METHODS constant
Jon Leighton
2012-04-13
1
-4
/
+7
*
Fix delete_all when chained with joins.
Rafael Mendonça França
2012-04-10
1
-2
/
+10
*
Correct description of ['migrated_at > ?', 1.week.ago] from "more than a week...
Dave Burt
2012-03-20
1
-1
/
+1
*
relation .present? and .blank? should not query SELECT COUNT(DISTINCT id)
Thiago Almeida
2012-03-16
1
-0
/
+4
*
Remove IdentityMap
Carlos Antonio da Silva
2012-03-13
1
-10
/
+1
*
use bind values for join columns
Aaron Patterson
2012-02-27
1
-1
/
+6
*
prepared statements can be disabled
Aaron Patterson
2012-02-21
1
-1
/
+2
*
let AR::Relation pretty_printed like an Array
Akira Matsuda
2012-01-21
1
-0
/
+4
*
Deprecate inferred JOINs with includes + SQL snippets.
Jon Leighton
2012-01-16
1
-3
/
+25
*
store references as a string
Jon Leighton
2012-01-16
1
-1
/
+1
*
Make referencing an included item trigger eager loading
Jon Leighton
2012-01-16
1
-1
/
+2
*
Add ActiveRecord::Relation#references (#950)
Jon Leighton
2012-01-16
1
-1
/
+1
*
Revert "Deprecate implicit eager loading. Closes #950."
Jon Leighton
2012-01-16
1
-13
/
+1
*
correctly handle order calls after a reorder
Matt Jones + Scott Walker
2012-01-03
1
-1
/
+1
*
Merge branch 'master' of github.com:lifo/docrails
Vijay Dev
2011-12-29
1
-1
/
+1
|
\
|
*
typo
Jo Liss
2011-12-28
1
-1
/
+1
*
|
Deprecate implicit eager loading. Closes #950.
Jon Leighton
2011-12-29
1
-1
/
+13
|
/
*
AS::Concern is not really needed for AR::Explain
Xavier Noria
2011-12-16
1
-1
/
+1
*
Split out most of the AR::Base code into separate modules :cake:
Jon Leighton
2011-12-15
1
-1
/
+1
*
Set up delegations also for to_a and arel branches.
José Valim
2011-12-15
1
-7
/
+0
*
Move delegation reponsibilities of Relation to a module. Also precompile meth...
José Valim
2011-12-15
1
-22
/
+1
*
Make with_scope public so we stop using send :bomb:
José Valim
2011-12-15
1
-1
/
+1
*
Improve delegate list to avoid method missing.
José Valim
2011-12-15
1
-1
/
+2
*
There isn't a column_hash. It was being invoked by method missing.
José Valim
2011-12-15
1
-1
/
+1
*
implements a much faster auto EXPLAIN, closes #3843 [José Valim & Xavier Noria]
Xavier Noria
2011-12-04
1
-5
/
+5
*
indentation fix warning
Arun Agrawal
2011-12-02
1
-1
/
+1
*
revises some details in the previous explain patch
Xavier Noria
2011-12-02
1
-1
/
+1
*
implements automatic EXPLAIN logging for slow queries
Xavier Noria
2011-12-02
1
-16
/
+29
*
add the query to AR::Relation#explain output
Xavier Noria
2011-11-25
1
-2
/
+3
*
implements AR::Relation#explain
Xavier Noria
2011-11-05
1
-0
/
+16
*
Add ActiveRecord::Relation#uniq for toggling DISTINCT in the SQL query
Jon Leighton
2011-11-05
1
-1
/
+1
*
Revert "Raise error on unknown primary key."
Jon Leighton
2011-10-05
1
-3
/
+3
*
Raise error on unknown primary key.
Jon Leighton
2011-10-05
1
-3
/
+3
*
Rename first_or_new to first_or_initialize.
Jon Leighton
2011-09-13
1
-2
/
+1
*
Using more precise method signatures for AR::Relation#first_or_create family ...
Andrés Mejía
2011-09-06
1
-6
/
+6
*
Adding first example with no arguments to AR::Relation#first_or_create and re...
Andrés Mejía
2011-09-06
1
-15
/
+15
*
Adding first_or_create, first_or_create!, first_or_new and first_or_build to ...
Andrés Mejía
2011-08-30
1
-0
/
+43
*
Refactor building the update manager
Jon Leighton
2011-08-15
1
-5
/
+6
*
Support updates with joins. Fixes #522.
Jon Leighton
2011-08-15
1
-4
/
+9
*
Make it the responsibility of the connection to hold onto an ARel visitor for...
Jon Leighton
2011-08-08
1
-7
/
+6
*
Bring back the ability to provide :order for update_all.
thedarkone
2011-07-25
1
-9
/
+5
*
Foo.joins(:bar).includes(:bar) should result in a single query with :bar as a...
Jon Leighton
2011-07-09
1
-1
/
+11
[next]