aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation/query_methods.rb
Commit message (Expand)AuthorAgeFilesLines
* 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
* rm `reorder_bind_params`Sean Griffin2014-11-171-10/+0
* Use a bound parameter for the "id = " portion of update statementsSean Griffin2014-11-011-3/+6
* [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
* let's warn with heredocsXavier Noria2014-10-281-2/+5
* 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
* A `NullRelation` should represent nothing. Closes #15176.Yves Senn2014-09-111-2/+2
* always reorder bind parameters. fixes #15920Aaron Patterson2014-09-041-6/+4
* Avoid using heredoc for user warningsGodfrey Chan2014-08-281-4/+2
* 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 duplicated parameter check on #where!Sergey Alekseev2014-05-231-8/+4
* Removed not-used codePaul Nikitochkin2014-05-221-1/+0
* Merge branch 'master' into adequaterecordAaron Patterson2014-04-251-2/+14
|\
| * reset `@arel` when modifying a Relation in place.Yves Senn2014-04-241-0/+12
| * select! renamed to avoid name collision Array#select!Earl J St Sauver2014-04-211-2/+2
* | Merge branch 'master' into adequaterecordAaron Patterson2014-04-071-4/+8
|\|
| * Build the reverse_order on its proper method.Lauro Caetano2014-04-071-3/+3
| * Merge branch 'master' of github.com:rails/docrailsVijay Dev2014-03-291-1/+5
| |\
| | * Update documentation on group method to indicate it takes an arrayEarl St Sauver2014-03-171-0/+4
| | * Fix misspelling in references docsSteven Harman2014-03-141-1/+1
* | | Merge branch 'master' into adequaterecordAaron Patterson2014-03-251-0/+2
|\| |
| * | `where.not` adds `references` for `includes`.Yves Senn2014-03-171-0/+2
| |/
* | Merge branch 'master' into adequaterecordAaron Patterson2014-03-131-17/+22
|\|
| * get rid of intermediate arrays.Yves Senn2014-03-051-2/+3
| * we only need to support `asc` and `ASC`. No need for mixed cases. #14263Yves Senn2014-03-051-13/+14
| * Allow string hash values on AR order methodMarcelo Casiraghi2014-03-041-3/+6
| * [ci skip] correct select examples and doc, ref [522c0fd]Kuldeep Aggarwal2014-03-011-4/+4
* | Merge branch 'master' into adequaterecordAaron Patterson2014-02-171-5/+3
|\|
| * Revert "Merge pull request #13344 from ccutrer/fix-from-default-select"Rafael Mendonça França2014-02-171-2/+0
| * No need to use symbolsRafael Mendonça França2014-02-161-3/+3
* | Merge branch 'master' into adequaterecordAaron Patterson2014-02-171-17/+26
|\|
| * Make arel methods private APIRafael Mendonça França2014-02-011-4/+3
| * Let `unscope` ignore non Arel scope.where_valuesWashington Luiz2014-01-301-2/+0
| * docs, `references` is only used with `includes`. Closes #13727.Yves Senn2014-01-301-9/+14
| * Handle aliased attributes in AR::Relation#select, #order, etc.Tsutomu Kuroda2014-01-291-1/+5
| * Display value when raising due to unscope() issuesWashington Luiz2014-01-271-1/+1
| * prepend table name for `Relation#select` columns.Yves Senn2014-01-211-1/+4
* | Remove outdated comment.Rafael Mendonça França2014-01-171-1/+0
* | use a params hash so we know what bind parameters are usedAaron Patterson2014-01-151-1/+1
* | reorder bind indexes if joins produced bind valuesAaron Patterson2014-01-141-0/+9
* | take in to account existing bind parameters when building the bind listAaron Patterson2014-01-141-21/+20
* | unscoping a where should remove bind valuesAaron Patterson2014-01-141-0/+2
* | remove dead codeAaron Patterson2014-01-141-2/+0
* | we should not be copying these. fixes test_find_all_using_where_with_relation...Aaron Patterson2014-01-141-4/+0
* | fixing column alias resolutionAaron Patterson2014-01-131-1/+1