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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Merge pull request #12011 from jetthoughts/11963_fix_join_with_association_scope
Rafael Mendonça França
2013-09-16
1
-6
/
+5
|
\
|
*
Collapse where constraints to one where constraint
Paul Nikitochkin
2013-09-13
1
-6
/
+5
*
|
Merge pull request #12129 from Empact/deprecate-array-bang-delegation
Rafael Mendonça França
2013-09-12
1
-3
/
+14
|
\
\
|
*
|
Deprecate the delegation of Array bang methods in ActiveRecord::Delegation
Ben Woosley
2013-09-04
1
-3
/
+14
*
|
|
Merge pull request #12156 from rywall/from-copy-binds
Rafael Mendonça França
2013-09-12
1
-0
/
+1
|
\
\
\
|
*
|
|
Allow Relation#from to accept other relations with bind values.
Ryan Wallace
2013-09-08
1
-0
/
+1
|
|
|
/
|
|
/
|
*
/
|
Relation#merge should not lose readonly(false) flag.
thedarkone
2013-09-11
1
-1
/
+5
|
/
/
*
|
Merge pull request #11958 from jetthoughts/extract_pre_process_orders_args
Yves Senn
2013-09-04
1
-13
/
+16
|
\
\
|
|
/
|
/
|
|
*
Extracted from `order` processing of arguments, and use it for `reorder` to b...
Paul Nikitochkin
2013-09-04
1
-13
/
+16
*
|
Don't use Enumerable#next in pluck since it is very slow
Ryan Wallace
2013-08-30
1
-2
/
+1
*
|
Merge pull request #12090 from njakobsen/merger-performance
Aaron Patterson
2013-08-30
1
-3
/
+3
|
\
\
|
*
|
Don't create fibers just to iterate
Nicholas Jakobsen
2013-08-30
1
-3
/
+3
|
|
/
*
|
no need to fully qualify
Aaron Patterson
2013-08-30
1
-1
/
+1
*
|
move the cache to the AR models and populate it on inherited
Aaron Patterson
2013-08-30
1
-20
/
+29
*
|
no need for the const_get since we lock
Aaron Patterson
2013-08-30
1
-5
/
+1
*
|
require a class for cache computations
Aaron Patterson
2013-08-30
1
-1
/
+3
*
|
cache misses should return self
Aaron Patterson
2013-08-30
1
-1
/
+1
|
/
*
check class hierarchy with is_a? in PredicateBuilder.expand
Mikhail Dieterle
2013-08-27
1
-1
/
+1
*
let AR::FinderMethods#exists? return singletons in all cases [closes #11592]
Xavier Noria
2013-08-19
1
-7
/
+7
*
Minor optimization and code cleanup in query_methods.
Eugene Gilburg
2013-07-31
1
-38
/
+45
*
Merge branch 'revert-order-prepending'
Rafael Mendonça França
2013-07-30
1
-2
/
+2
|
\
|
*
Revert change on ActiveRecord::Relation#order method that prepends new
Rafael Mendonça França
2013-07-29
1
-2
/
+2
*
|
Add ability to specify how a class is converted to Arel predicate
sgrif
2013-07-28
3
-35
/
+74
|
/
*
stop relying on side effects of const_missing
Aaron Patterson
2013-07-23
1
-7
/
+7
*
add a specific factory method rather than using new
Aaron Patterson
2013-07-23
3
-6
/
+4
*
Improve ActiveRecord::QueryMethods#includes docs
Henrik Hodne
2013-07-17
1
-0
/
+8
*
decouple the manager class from building join constraints
Aaron Patterson
2013-07-16
1
-4
/
+5
*
save another array allocation
Aaron Patterson
2013-07-15
1
-1
/
+1
*
removing useless assingment
Aaron Patterson
2013-07-15
1
-1
/
+1
*
reorder bind parameters when merging relations
Aaron Patterson
2013-07-15
1
-2
/
+18
*
use arel rather than slapping together SQL strings
Aaron Patterson
2013-07-15
1
-2
/
+4
*
Merge pull request #11439 from ernie/only-scan-strings-for-nodes
Yves Senn
2013-07-14
1
-1
/
+1
|
\
|
*
Blacklist->whitelist for reference scans in order!
Ernie Miller
2013-07-14
1
-1
/
+1
*
|
re-introduce `select_for_count` private method.
Yves Senn
2013-07-14
1
-5
/
+10
|
/
*
Typo fix [skip ci]
Ankit Gupta
2013-07-12
1
-1
/
+1
*
fix visibility of the relation construction methods
Aaron Patterson
2013-07-09
1
-5
/
+7
*
pass arel to select_all rather than depend on method_missing
Aaron Patterson
2013-07-09
1
-1
/
+1
*
Extract common query to a constant.
Vipul A M
2013-07-06
1
-1
/
+3
*
no need to to_sym the column name, leave it as-is
Aaron Patterson
2013-07-02
1
-1
/
+1
*
resolve aliases before passing the hash to the predicate builder
Aaron Patterson
2013-07-02
2
-4
/
+11
*
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
*
we don't need to to_s the column
Aaron Patterson
2013-07-01
1
-1
/
+1
*
the data structure used to store attribute aliases should not be exposed
Aaron Patterson
2013-07-01
1
-2
/
+2
*
Remove deprecated `:distinct` option from `Relation#count`.
Yves Senn
2013-07-01
1
-5
/
+0
*
Merge pull request #11161 from dmitry/find_in_batches_works_without_logger
Carlos Antonio da Silva
2013-06-28
1
-2
/
+2
|
\
|
*
find_in_batches should work without logger
Dmitry Polushkin
2013-06-28
1
-2
/
+2
[next]