aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation
Commit message (Expand)AuthorAgeFilesLines
* [ci skip] Combine complementary AR #find doc linesAlexander Dimitriyadi2015-03-301-3/+1
* [skip ci] Improve `warn_on_records_fetched` documentationJon Atack2015-03-271-3/+2
* Add `config.active_record.warn_on_records_fetched_greater_than` optionJason Nochlin2015-03-251-0/+50
* Fix referencing wrong aliases while joining tables of has many throughpinglamb2015-03-221-1/+1
* Drop `references_eager_loaded_tables?` test from `has_include?`Ben Woosley2015-03-171-1/+1
* Spell PostgreSQL correctly :elephant:Akira Matsuda2015-02-281-1/+1
* Removed non-standard and unused require 'active_support/deprecation' from par...Vipul A M2015-02-271-1/+0
* Fix c479480638508c20601af69ca46b5b606c2d5b4d to account for from_value -> fro...Jeremy Kemper2015-02-241-1/+1
* Merge pull request #18744 from mfazekas/no-table-name-with-fromRafael Mendonça França2015-02-241-5/+9
* `Type#type_cast_from_database` -> `Type#deserialize`Sean Griffin2015-02-171-2/+2
* correct method name in deprecation messageyuuji.yaginuma2015-02-181-1/+1
* Deprecated passing of `start` value to `find_in_batches` and `find_each` in f...Vipul A M2015-02-171-17/+31
* Add an option `end_at` to `find_in_batches`Vipul A M2015-02-091-12/+22
* Raise ArgumentError when passing nil to Relation#mergeRafael Mendonça França2015-02-061-1/+1
* Use keyword argument in the find_in_batches APIRafael Mendonça França2015-02-061-11/+7
* Respect custom primary keys for associations in `Relation#where`Sean Griffin2015-02-041-1/+21
* Attribute assignment and type casting has nothing to do with columnsSean Griffin2015-01-311-1/+1
* Post.all.or(anything) == Post.allSean Griffin2015-01-291-2/+2
* Fixed AR::Relation#group method when argument is a SQL reserved keywordBogdan Gusiev2015-01-291-13/+15
* Don't error when grouped calculations return 0 recordsSean Griffin2015-01-281-1/+1
* Bring the implementation of Relation#or up to speedSean Griffin2015-01-282-36/+21
* Added #or to ActiveRecord::RelationMatthew Draper2015-01-281-0/+59
* Remove Relation#bind_paramsSean Griffin2015-01-275-17/+27
* Use an `Attribute` object to represent a bind valueSean Griffin2015-01-274-8/+18
* Minor refactorings on `Relation#build_joins`Sean Griffin2015-01-271-26/+13
* `WhereClause#predicates` does not need to be publicSean Griffin2015-01-271-1/+3
* Use the `WhereClause` ast building logic for havingSean Griffin2015-01-271-4/+1
* Move where grouping into `WhereClause`Sean Griffin2015-01-272-11/+26
* Unify access to bind values on RelationSean Griffin2015-01-275-15/+9
* Move the `from` bind logic to a `FromClause` classSean Griffin2015-01-263-16/+47
* Remove `Relation#bind_values=`Sean Griffin2015-01-262-10/+8
* Remove unused `bind` and `bind!` methods from `Relation`Sean Griffin2015-01-261-9/+0
* Remove `Relation#build_where`Sean Griffin2015-01-261-6/+0
* Change `having_values` to use the `WhereClause` classSean Griffin2015-01-263-5/+8
* Remove `where_values` and `where_values=`Sean Griffin2015-01-251-8/+0
* Correct the implementation for `unscope(:where)`Sean Griffin2015-01-251-5/+8
* Move `where_values_hash` over to `WhereClause`Sean Griffin2015-01-251-0/+22
* Move `where_unscoping` logic over to `WhereClause`Sean Griffin2015-01-252-17/+25
* Remove most references to `where_values` in `QueryMethods`Sean Griffin2015-01-251-2/+2
* `Relation#Merger` can merge all clause methodsSean Griffin2015-01-251-3/+11
* Rename `WhereClause#parts` to `WhereClause#predicates`Sean Griffin2015-01-252-16/+16
* Move `where.not` logic into `WhereClause`Sean Griffin2015-01-252-15/+25
* Move the construction of `WhereClause` objects out of `Relation`Sean Griffin2015-01-252-14/+42
* Remove all references to `where_values` in association codeSean Griffin2015-01-251-0/+2
* Remove references to `:bind` in `except`Sean Griffin2015-01-251-3/+0
* Move where merging logic over to `WhereClause`Sean Griffin2015-01-252-40/+37
* Introduce `Relation::WhereClause`Sean Griffin2015-01-252-0/+63
* Expand the number of types which can use prepared statementsSean Griffin2015-01-242-6/+13
* Don't mutate `where_values`Sean Griffin2015-01-241-1/+1
* Don't rely on relation mutability when building through associationsSean Griffin2015-01-241-18/+24