aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation
Commit message (Expand)AuthorAgeFilesLines
* Allow to unscope where conditions using `arel_table` with Symboldeeeki2014-12-031-1/+1
* Update Arel usage for rails/arel#98fc259Sean Griffin2014-11-292-5/+5
* Stop using `Arel::Table.engine`Sean Griffin2014-11-292-3/+3
* Pass symbol as an argument instead of a blockErik Michaels-Ober2014-11-291-1/+1
* Fix includes on association with a scope containing joins along with conditionssiddharth@vinsol.com2014-11-211-4/+2
* PERF: avoid string allocationsSam2014-11-201-1/+6
* Remove the unused second argument to `substitute_at`Sean Griffin2014-11-171-12/+0
* rm `reorder_bind_params`Sean Griffin2014-11-171-10/+0
* Handle `RangeError` from casting in `find_by` and `find_by!` on RelationSean Griffin2014-11-021-0/+4
* Pass the `SelectManager`, rather than the AST when querying w/ RelationSean Griffin2014-11-021-1/+1
* Don't duplicate predicate building logic in Relation findersSean Griffin2014-11-011-5/+2
* Use a bound parameter for the "id = " portion of update statementsSean Griffin2014-11-011-3/+6
* Correctly cast calculation results on PGSean Griffin2014-11-011-1/+2
* [ci skip] `Relation#bind` is not public APISean Griffin2014-11-011-1/+1
* Use bind values for joined tables in where statementsSean Griffin2014-11-011-0/+17
* Remove redundant substitute index when constructing bind valuesMelanie Gilman2014-10-311-5/+4
* Treat strings greater than int max value as out of rangeSean Griffin2014-10-311-0/+2
* Don't require calculations to be aliased to a columnSean Griffin2014-10-311-1/+1
* Use `#between`, rather than `#in` for passing Ranges to ArelSean Griffin2014-10-302-2/+2
* Merge pull request #17421 from rails/warn-with-heredocXavier Noria2014-10-283-9/+22
|\
| * let's warn with heredocsXavier Noria2014-10-283-9/+22
* | Remove unneccessary default values from relation mergerSean Griffin2014-10-281-2/+2
* | Call value methods when merging relations, rather than accessing keysSean Griffin2014-10-281-14/+14
|/
* Allow Relation#rewhere to work with infinite range valuesDan Olson2014-10-271-1/+1
* Fix Relation.rewhere to work with Range valuesDan Olson2014-10-201-1/+1
* [ci skip] Make merge method nodocAnshul Sharma2014-10-201-8/+1
* [ci skip] merge docsAnshul Sharma2014-10-201-0/+7
* Remove duplicate error message "Couldn't find..."claudiob2014-10-131-6/+10
* No need to call to_sym hereGodfrey Chan2014-09-202-9/+9
* Merge pull request #15791 from zev/add_model_to_recordnotfound_messageAaron Patterson2014-09-191-8/+8
|\
| * Update RecordNotFound exception cases to include a message with theZev Blut2014-06-181-8/+8
* | A `NullRelation` should represent nothing. Closes #15176.Yves Senn2014-09-111-2/+2
* | Fix query with nested array in Active RecordCristian Bica2014-09-061-4/+12
* | Fixed regression with referencing polymorphic assoc in eager-loadGodfrey Chan2014-09-051-1/+2
* | always reorder bind parameters. fixes #15920Aaron Patterson2014-09-041-6/+4
* | Avoid using heredoc for user warningsGodfrey Chan2014-08-281-4/+2
* | Fixes the `Relation#exists?` to work with polymorphic associations.Kassio Borges2014-08-181-1/+1
* | Check attributes passed to create_with and whereRafael Mendonça França2014-08-181-2/+14
* | Fixed AR::Relation#where edge case with Hash and other RelationBogdan Gusiev2014-08-141-3/+15
* | remove blank lines in the start of the ActiveRecord filesPonomarev Nikolay2014-07-291-1/+0
* | Fix typo in commentCade Truitt2014-07-021-1/+1
* | Encapsulate knowledge of type objects on `ActiveRecord::Result`Sean Griffin2014-06-221-10/+1
* | Don't use `Column` for type casting in Relation calculationsSean Griffin2014-06-181-12/+8
* | [ci skip] add API doc for AR Group.Aditya Kapoor2014-06-171-1/+9
* | Pluck should work with columns of the same name from different tablesSean Griffin2014-06-111-3/+1
|/
* ActiveRecord::FinderMethods.find passes proc parameter #15382James Yang2014-06-101-1/+1
* Rename `type_cast` to `type_cast_from_database`Sean Griffin2014-06-091-2/+2
* reuse available belongs_to? methodeileencodes2014-06-031-1/+1
* Remove unused `initialize_attributes` methodSean Griffin2014-06-021-1/+1
* Merge pull request #14834 from al2o3cr/issue14155Aaron Patterson2014-05-271-1/+10
|\