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
*
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
*
Use Enumerable#with_index. We're on Ruby > 1.8.7
Akira Matsuda
2011-07-08
1
-2
/
+1
*
Add require ActiveSupport delegation to ActiveRecord::Relation class.
Dmitriy Kiriyenko
2011-07-07
1
-0
/
+1
*
default create_with_value to a hash so we can eliminate conditionals, add tes...
Aaron Patterson
2011-06-27
1
-2
/
+3
*
Fix issue #1272
Brian Mathiyakom
2011-06-01
1
-1
/
+1
*
delegate connection and column_hash calls directly to model
Hemant Kumar
2011-05-28
1
-1
/
+1
*
Merge branch 'master' of git://github.com/lifo/docrails
Xavier Noria
2011-05-25
1
-2
/
+2
|
\
|
*
Remove extra white spaces on ActiveRecord docs.
Sebastian Martinez
2011-05-23
1
-2
/
+2
*
|
Fix infinite recursion where a lazy default scope references a scope. Fixes #...
Jon Leighton
2011-05-25
1
-1
/
+1
*
|
Ensure that the surrounding code in Relation#to_a respects the default_scope ...
Jon Leighton
2011-05-24
1
-17
/
+24
|
/
*
using bind parameters for updates
Aaron Patterson
2011-04-30
1
-1
/
+1
*
postgresql supports prepare statement deletes
Aaron Patterson
2011-04-29
1
-1
/
+3
*
Use existing #empty_insert_statement_value for an insert with no columns.
Ken Collins
2011-04-24
1
-1
/
+1
*
The #substitute_at gets an ActiveRecord::ConnectionAdapters::Column in #inser...
Ken Collins
2011-04-23
1
-1
/
+1
*
sort insert columns for better cache hits
Aaron Patterson
2011-04-14
1
-1
/
+1
*
refactoring inserts to use the same method on the connection
Aaron Patterson
2011-04-14
1
-21
/
+16
*
insert statements are prepared, but values are not escaped properly
Aaron Patterson
2011-04-14
1
-6
/
+24
*
ActiveRecord::Base.scopes hash is not needed
Jon Leighton
2011-04-12
1
-2
/
+0
*
Evaluate default scopes at the last possible moment in order to avoid problem...
Jon Leighton
2011-04-12
1
-3
/
+14
*
Deprecated support for passing hashes and relations to default_scope, in favo...
Jon Leighton
2011-04-12
1
-6
/
+1
*
Use IM when trying to load records using ID.
Emilio Tagua
2011-04-04
1
-0
/
+3
*
Quote find_in_batches ORDER BY clause [#6620 state:resolved]
Andrew White
2011-03-29
1
-1
/
+1
*
pushing id insertion and prefetch primary keys down to Relation#insert
Aaron Patterson
2011-03-22
1
-3
/
+14
*
Fixed a bug when empty? was called on a grouped Relation that wasn't loaded
Chris Oliver
2011-03-12
1
-1
/
+4
*
Referencing a table via the ON condition in a join should force that table to...
Jon Leighton
2011-03-07
1
-1
/
+12
*
Rewrote AssociationPreload.
Jon Leighton
2011-02-28
1
-1
/
+3
*
only take the limit if there is a limit to take
Aaron Patterson
2011-02-25
1
-1
/
+1
*
Relation will delegate to AR::Base which already uses the Dynamic finders, so...
Aaron Patterson
2011-02-22
1
-8
/
+3
*
Adding new examples for update_all method
Rodrigo Navarro
2011-02-20
1
-0
/
+6
*
Adding examples
Rodrigo Navarro
2011-02-20
1
-0
/
+2
*
Merge remote branch 'rails/master' into identity_map
Emilio Tagua
2011-02-15
1
-16
/
+22
|
\
|
*
primary keys should not be cleared on cache clear, fixing oracle tests
Aaron Patterson
2011-02-08
1
-1
/
+8
|
*
ActiveRecord::Relation#primary_key should return a string, just like ActiveRe...
Jon Leighton
2011-01-03
1
-13
/
+6
|
*
use the sql literal factory method
Aaron Patterson
2010-12-24
1
-1
/
+1
|
*
stop the recursive insanity
Aaron Patterson
2010-12-24
1
-5
/
+10
|
*
setting the primary key on the update manager
Aaron Patterson
2010-12-24
1
-0
/
+1
|
*
fixed retrieval of primary key value in Ralation#insert method
Raimonds Simanovskis
2010-12-23
1
-1
/
+1
*
|
Merge remote branch 'rails/master' into identity_map
Emilio Tagua
2010-12-20
1
-20
/
+35
|
\
|
|
*
stop delegating inserts to ARel, use the INSERT SQL ourselves
Aaron Patterson
2010-12-16
1
-1
/
+13
|
*
avoid deprecate api
Aaron Patterson
2010-12-02
1
-1
/
+8
[next]