aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'master-sec'Aaron Patterson2013-03-181-1/+1
|\
| * stop calling to_sym when building arel nodes [CVE-2013-1854]Aaron Patterson2013-03-151-1/+1
* | Deprecate the `:distinct` option for `Relation#count`.Yves Senn2013-03-151-2/+7
* | rename `Relation#uniq` to `Relation#distinct`. `#uniq` still works.Yves Senn2013-03-152-11/+13
|/
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2013-03-051-1/+1
|\
| * Fix WhereChain docs to mention only notErnie Miller2013-03-041-1/+1
* | Remove .all usage from unscope doc examples [ci skip]Carlos Antonio da Silva2013-03-041-4/+4
* | Use 1.9 hash style in changelog and doc examples [ci skip]Carlos Antonio da Silva2013-03-041-3/+3
* | Created an unscope method for removing relations from a chain ofwangjohn2013-03-031-0/+94
* | Revert "Merge pull request #9207 from dylanahsmith/mysql-quote-numeric"Steve Klabnik2013-02-271-5/+0
|/
* Expand order(:symbol) to "table".symbol to prevent broken queries on PG.Yves Senn2013-02-251-0/+5
* Make explicit the method will raise an exceptionRafael Mendonça França2013-02-241-10/+10
* remove AR auto-explain (config.auto_explain_threshold_in_seconds)Yves Senn2013-02-241-1/+1
* adds a missing LIMIT 1 in #take docsXavier Noria2013-02-231-1/+1
* Merge pull request #9345 from wangjohn/change_name_of_query_method_argument_c...Rafael Mendonça França2013-02-201-10/+10
|\
| * Renaming the check_empty_arguments method to something more descriptive.wangjohn2013-02-201-10/+10
* | removes some remaining relation bang methods documentation [ci skip]Xavier Noria2013-02-201-3/+0
* | adds an example in the docs of #not with multiple conditions [ci skip]Xavier Noria2013-02-201-4/+8
|/
* Added comments about the check_empty_arguments method which is calledwangjohn2013-02-201-11/+27
* Raise an error when query methods have blank arguments, and when blank argume...John J Wang2013-02-191-9/+23
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2013-02-152-0/+24
|\
| * copy edits [ci skip]Vijay Dev2013-02-151-1/+1
| * Add example for ActiveRecord::Base.joins using a string as argumentMaurizio De Santis2013-02-071-0/+5
| * Add example for ActiveRecord::Base.group using a string as argumentMaurizio De Santis2013-02-071-0/+3
| * Add documentation for ActiveRecord.select when use strings as argumentsMaurizio De Santis2013-02-071-0/+10
| * Add ActiveRecord.count documentation when used on group relationsMaurizio De Santis2013-02-071-0/+6
* | Use IN operator like arel for empty hash in where clauserobertomiranda2013-02-091-1/+1
* | Reverting e170014113 (Change behaviour with empty hash in where clause)Guillermo Iguaran2013-02-081-1/+1
* | Reverting 16f6f25 (Change behaviour with empty array in where clause)Guillermo Iguaran2013-02-081-2/+0
* | Change behaviour with empty array in where clauserobertomiranda2013-02-081-0/+2
* | Change behaviour with empty hash in where clauserobertomiranda2013-02-081-1/+1
* | active_record: Quote numeric values compared to string columns.Dylan Smith2013-02-071-0/+5
|/
* Prevent Relation#merge from collapsing wheres on the RHSJon Leighton2013-01-271-17/+19
* `#count` in conjunction with `#uniq` performs distinct count.Yves Senn2013-01-261-1/+2
* reduce the number of queries on IN clauses, fix relation queries in `where`Aaron Patterson2013-01-242-1/+6
* stop converting strings to symbolsAaron Patterson2013-01-241-1/+1
* Revert "Merge pull request #8989 from robertomiranda/use-rails-4-find-by"Guillermo Iguaran2013-01-181-1/+1
* User Rails 4 find_byrobertomiranda2013-01-181-1/+1
* Refactor predicate builder when receiving empty hashCarlos Antonio da Silva2013-01-171-4/+4
* These are already required through AS/railsAkira Matsuda2013-01-072-3/+0
* refatctoring of some code repetition in spawn_methodsAngelo capilleri2012-12-311-8/+10
* warning removed: shadowing outer local variableArun Agrawal2012-12-301-2/+2
* fix time typcasting on group counts in PGAaron Patterson2012-12-281-2/+5
* mysql does not return alias names, so fall backAaron Patterson2012-12-281-4/+10
* fix PG typecasting errorsAaron Patterson2012-12-281-2/+5
* Replace some global Hash usages with the new thread safe cache.thedarkone2012-12-141-22/+16
* Improve where.not docs [ci skip]Carlos Antonio da Silva2012-12-081-14/+8
* Rollback where.like and where.not_likeCarlos Antonio da Silva2012-12-071-26/+0
* Document the types of arguments accepted by AR#notclaudiob2012-12-071-2/+11
* Fix where.not with in clauseCarlos Antonio da Silva2012-12-071-3/+3