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 #19546 from DianthuDia/fix_unscope_for_less_than
Yves Senn
2015-04-28
1
-1
/
+1
|
\
|
*
Fix unscope for less than
TAKAHASHI Kazuaki
2015-03-27
1
-1
/
+1
*
|
Merge pull request #19718 from eagletmt/find_by-without-arg
Yves Senn
2015-04-28
1
-4
/
+4
|
\
\
|
*
|
Raise ArgumentError when find_by receives no arguments
Kohei Suzuki
2015-04-11
1
-4
/
+4
*
|
|
Revert "Merge pull request #19755 from yuki24/activerecord/support-for-set"
Yves Senn
2015-04-15
1
-1
/
+0
*
|
|
Add support for Set to Relation#where
Yuki Nishijima
2015-04-13
1
-0
/
+1
*
|
|
Enhance documentation of pluck with a hint to ids [ci skip]
wingfire
2015-04-12
1
-3
/
+5
|
/
/
*
|
[ci skip] Combine complementary AR #find doc lines
Alexander Dimitriyadi
2015-03-30
1
-3
/
+1
*
|
[skip ci] Improve `warn_on_records_fetched` documentation
Jon Atack
2015-03-27
1
-3
/
+2
|
/
*
Add `config.active_record.warn_on_records_fetched_greater_than` option
Jason Nochlin
2015-03-25
1
-0
/
+50
*
Fix referencing wrong aliases while joining tables of has many through
pinglamb
2015-03-22
1
-1
/
+1
*
Drop `references_eager_loaded_tables?` test from `has_include?`
Ben Woosley
2015-03-17
1
-1
/
+1
*
Spell PostgreSQL correctly :elephant:
Akira Matsuda
2015-02-28
1
-1
/
+1
*
Removed non-standard and unused require 'active_support/deprecation' from par...
Vipul A M
2015-02-27
1
-1
/
+0
*
Fix c479480638508c20601af69ca46b5b606c2d5b4d to account for from_value -> fro...
Jeremy Kemper
2015-02-24
1
-1
/
+1
*
Merge pull request #18744 from mfazekas/no-table-name-with-from
Rafael Mendonça França
2015-02-24
1
-5
/
+9
*
`Type#type_cast_from_database` -> `Type#deserialize`
Sean Griffin
2015-02-17
1
-2
/
+2
*
correct method name in deprecation message
yuuji.yaginuma
2015-02-18
1
-1
/
+1
*
Deprecated passing of `start` value to `find_in_batches` and `find_each` in f...
Vipul A M
2015-02-17
1
-17
/
+31
*
Add an option `end_at` to `find_in_batches`
Vipul A M
2015-02-09
1
-12
/
+22
*
Raise ArgumentError when passing nil to Relation#merge
Rafael Mendonça França
2015-02-06
1
-1
/
+1
*
Use keyword argument in the find_in_batches API
Rafael Mendonça França
2015-02-06
1
-11
/
+7
*
Respect custom primary keys for associations in `Relation#where`
Sean Griffin
2015-02-04
1
-1
/
+21
*
Attribute assignment and type casting has nothing to do with columns
Sean Griffin
2015-01-31
1
-1
/
+1
*
Post.all.or(anything) == Post.all
Sean Griffin
2015-01-29
1
-2
/
+2
*
Fixed AR::Relation#group method when argument is a SQL reserved keyword
Bogdan Gusiev
2015-01-29
1
-13
/
+15
*
Don't error when grouped calculations return 0 records
Sean Griffin
2015-01-28
1
-1
/
+1
*
Bring the implementation of Relation#or up to speed
Sean Griffin
2015-01-28
2
-36
/
+21
*
Added #or to ActiveRecord::Relation
Matthew Draper
2015-01-28
1
-0
/
+59
*
Remove Relation#bind_params
Sean Griffin
2015-01-27
5
-17
/
+27
*
Use an `Attribute` object to represent a bind value
Sean Griffin
2015-01-27
4
-8
/
+18
*
Minor refactorings on `Relation#build_joins`
Sean Griffin
2015-01-27
1
-26
/
+13
*
`WhereClause#predicates` does not need to be public
Sean Griffin
2015-01-27
1
-1
/
+3
*
Use the `WhereClause` ast building logic for having
Sean Griffin
2015-01-27
1
-4
/
+1
*
Move where grouping into `WhereClause`
Sean Griffin
2015-01-27
2
-11
/
+26
*
Unify access to bind values on Relation
Sean Griffin
2015-01-27
5
-15
/
+9
*
Move the `from` bind logic to a `FromClause` class
Sean Griffin
2015-01-26
3
-16
/
+47
*
Remove `Relation#bind_values=`
Sean Griffin
2015-01-26
2
-10
/
+8
*
Remove unused `bind` and `bind!` methods from `Relation`
Sean Griffin
2015-01-26
1
-9
/
+0
*
Remove `Relation#build_where`
Sean Griffin
2015-01-26
1
-6
/
+0
*
Change `having_values` to use the `WhereClause` class
Sean Griffin
2015-01-26
3
-5
/
+8
*
Remove `where_values` and `where_values=`
Sean Griffin
2015-01-25
1
-8
/
+0
*
Correct the implementation for `unscope(:where)`
Sean Griffin
2015-01-25
1
-5
/
+8
*
Move `where_values_hash` over to `WhereClause`
Sean Griffin
2015-01-25
1
-0
/
+22
*
Move `where_unscoping` logic over to `WhereClause`
Sean Griffin
2015-01-25
2
-17
/
+25
*
Remove most references to `where_values` in `QueryMethods`
Sean Griffin
2015-01-25
1
-2
/
+2
*
`Relation#Merger` can merge all clause methods
Sean Griffin
2015-01-25
1
-3
/
+11
*
Rename `WhereClause#parts` to `WhereClause#predicates`
Sean Griffin
2015-01-25
2
-16
/
+16
*
Move `where.not` logic into `WhereClause`
Sean Griffin
2015-01-25
2
-15
/
+25
*
Move the construction of `WhereClause` objects out of `Relation`
Sean Griffin
2015-01-25
2
-14
/
+42
[next]