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
*
Avoid extra calls to to_s
Daniel Colson
2018-01-29
1
-1
/
+1
*
Fix expanding an array of `composed_of` objects which have multiple mappings
Ryuta Kamizono
2018-01-29
2
-1
/
+12
*
Fix `count(:all)` with eager loading and having an order other than the drivi...
Ryuta Kamizono
2018-01-25
1
-1
/
+8
*
Avoid passing unnecessary arguments to relation
Daniel Colson
2018-01-24
2
-2
/
+6
*
Fix relation merger issue with `left_outer_joins`
Mehmet Emin INAC
2018-01-15
2
-1
/
+27
*
Merge pull request #28313 from sandrew/master
Ryuta Kamizono
2018-01-15
1
-2
/
+3
|
\
|
*
Allow unscoping of left_outer_joins
Andrei Shaidurov
2017-03-06
1
-1
/
+1
*
|
Don't need to pass `manager` to `convert_join_strings_to_ast`
Ryuta Kamizono
2018-01-14
1
-2
/
+2
*
|
Don't pass garbage args to alias tracker
Ryuta Kamizono
2018-01-14
1
-1
/
+2
*
|
Use `apply_join_dependency` instead of meaningless named `find_with_associati...
Ryuta Kamizono
2018-01-11
1
-24
/
+11
*
|
Make `relation.exists?` more performant when using eager loading
Ryuta Kamizono
2018-01-11
1
-3
/
+4
*
|
resolve inconsistencies between first and to_a.first with limit
Brian Christian
2018-01-09
1
-1
/
+5
*
|
Make `find_nth_from_last` more performant when using reversible order
Ryuta Kamizono
2018-01-07
1
-6
/
+5
*
|
Fix `last` with `offset` to behave consistently with loaded relation
Ryuta Kamizono
2018-01-07
1
-1
/
+1
*
|
Fix `pluck` with eager loading to respect `offset`
Ryuta Kamizono
2018-01-07
1
-1
/
+1
*
|
Partial revert the changing default value of `readonly_value`
Ryuta Kamizono
2018-01-05
1
-13
/
+2
*
|
Refactor delegating `join_primary_key` instead of `join_keys` and `associatio...
Ryuta Kamizono
2018-01-01
2
-2
/
+2
*
|
Place args normalization from `left_outer_joins` to `left_outer_joins!`
Ryuta Kamizono
2017-12-20
1
-4
/
+2
*
|
Fix `count(:all)` to correctly work `distinct` with custom SELECT list
Ryuta Kamizono
2017-12-20
1
-10
/
+8
*
|
Using table name qualified column names unless having SELECT list explicitly
Ryuta Kamizono
2017-12-18
1
-2
/
+2
*
|
Make `sanitize_sql_` methods public
yuuji.yaginuma
2017-12-13
2
-2
/
+2
*
|
Quote colum_names when building select:
Edouard CHIN
2017-12-11
1
-1
/
+1
*
|
Fix `scope_for_create` to do not lose polymorphic associations
Ryuta Kamizono
2017-12-08
1
-2
/
+16
*
|
Update docs `ActiveRecord::FinderMethods#find`
suginoy
2017-11-28
1
-3
/
+4
*
|
Provide arguments to RecordNotFound
Nikita Misharin
2017-11-25
1
-5
/
+9
*
|
Update `exists?` documentation
Nikolai B
2017-11-14
1
-1
/
+2
*
|
Merge pull request #27947 from mastahyeti/unsafe_raw_sql
Matthew Draper
2017-11-14
2
-1
/
+14
|
\
\
|
*
|
push order arg checks down to allow for binds
Ben Toews
2017-11-09
1
-27
/
+6
|
*
|
deal with Array arguments to #order
Ben Toews
2017-11-09
1
-1
/
+13
|
*
|
convert order arg to string before checking if we can reverse it
Ben Toews
2017-11-09
1
-0
/
+4
|
*
|
use << instead of #concat in #reverse_sql_order because we might be working w...
Ben Toews
2017-11-09
1
-1
/
+1
|
*
|
try using regexes
Ben Toews
2017-11-09
2
-28
/
+5
|
*
|
allow table name and direction in string order arg
Ben Toews
2017-11-09
2
-25
/
+32
|
*
|
call enforce_raw_sql_whitelist on @klass so it works with FakeKlass
Ben Toews
2017-11-09
1
-2
/
+2
|
*
|
work with actual string when reversing order
Ben Toews
2017-11-09
1
-0
/
+3
|
*
|
allow Arel.sql() for pluck
Ben Toews
2017-11-09
2
-53
/
+21
|
*
|
add config to check arguments to unsafe AR methods
Ben Toews
2017-11-09
2
-14
/
+77
*
|
|
Merge pull request #30980 from sobrinho/sobrinho/arel-star-ignored-columns
Rafael França
2017-11-13
1
-0
/
+2
|
\
\
\
|
*
|
|
Do not use `Arel.star` when `ignored_columns`
Jon Moss
2017-11-13
1
-0
/
+2
*
|
|
|
Relation merging should keep joining order
Ryuta Kamizono
2017-11-11
1
-10
/
+8
*
|
|
|
Consolidate duplicated `to_ary`/`to_a` definitions in `Relation` and `Collect...
Ryuta Kamizono
2017-11-10
1
-1
/
+1
*
|
|
|
Ensure `apply_join_dependency` for subqueries in `from` and `where`
Ryuta Kamizono
2017-11-10
2
-0
/
+7
*
|
|
|
Move Attribute and AttributeSet to ActiveModel
Lisa Ugray
2017-11-09
2
-4
/
+4
|
|
/
/
|
/
|
|
*
|
|
Ensure `apply_join_dependency` for `collection_cache_key` if eager-loading is...
Ryuta Kamizono
2017-11-06
2
-3
/
+3
|
/
/
*
|
Fix duplicate aliases when using both INNER/LEFT JOINs
Ryuta Kamizono
2017-10-23
1
-3
/
+4
*
|
[Active Record] require => require_relative
Akira Matsuda
2017-10-21
5
-15
/
+15
*
|
Fix `COUNT(DISTINCT ...)` for `GROUP BY` with `ORDER BY` and `LIMIT`
Ryuta Kamizono
2017-10-14
1
-1
/
+1
*
|
Joined tables in association scope doesn't use the same aliases with the pare...
Ryuta Kamizono
2017-10-09
1
-11
/
+11
*
|
Remove meaningless named `construct_relation_for_association_calculations`
Ryuta Kamizono
2017-10-09
2
-6
/
+3
*
|
Fix `relation.exists?` with has_many through associations
Ryuta Kamizono
2017-10-09
1
-4
/
+4
[next]