aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation
Commit message (Expand)AuthorAgeFilesLines
* Fix duplicate aliases when using both INNER/LEFT JOINsRyuta Kamizono2017-10-231-3/+4
* [Active Record] require => require_relativeAkira Matsuda2017-10-215-15/+15
* Fix `COUNT(DISTINCT ...)` for `GROUP BY` with `ORDER BY` and `LIMIT`Ryuta Kamizono2017-10-141-1/+1
* Joined tables in association scope doesn't use the same aliases with the pare...Ryuta Kamizono2017-10-091-11/+11
* Remove meaningless named `construct_relation_for_association_calculations`Ryuta Kamizono2017-10-092-6/+3
* Fix `relation.exists?` with has_many through associationsRyuta Kamizono2017-10-091-4/+4
* Remove passing redundant `self` to internal `apply_join_dependency` etcRyuta Kamizono2017-10-091-13/+12
* Decouple building `AliasTracker` from `JoinDependency`Ryuta Kamizono2017-10-083-3/+5
* Use __callee__ to pass alias instead of original method namemeganemura2017-10-051-1/+1
* Treat `Set` as an `Array` in `Relation#where`Sean Griffin2017-09-261-0/+1
* Ensure `1 AS one` for SQL Server with calculations.Ken Collins2017-09-221-1/+1
* Remove unused explicit delegation to `klass` in `relation`Ryuta Kamizono2017-09-141-2/+1
* Don't use `quoted_table_name` in `limited_ids_for`Ryuta Kamizono2017-09-141-1/+3
* `quoted_table_name` doesn't respect table aliasRyuta Kamizono2017-09-141-1/+1
* Make `in_batches` queries to preparableRyuta Kamizono2017-09-141-3/+10
* PERF: Recover `ActiveRecord::pluck` performance.Guo Xiang Tan2017-09-061-14/+17
* Merge pull request #30377 from keepcosmos/delegate-missing-methodsMatthew Draper2017-08-311-2/+2
|\
| * Delegate :rindex, :slice, :rotate to 'records'keepcosmos2017-08-241-2/+2
* | Should be appear deprecation message for every call (#29649)Ryuta Kamizono2017-08-271-8/+0
* | Should work inverse association when eager loadingRyuta Kamizono2017-08-251-10/+1
|/
* Merge pull request #30169 from awortham/awortham/awortham/fix-sql-distinct-bugRafael Mendonça França2017-08-141-0/+3
|\
| * Ensure sum honors distinct on has_many throughAaron Wortham2017-08-141-0/+3
* | Completes ActiveRecord::Batches.find_each example [ci skip]Marc Rendl Ignacio2017-08-131-1/+6
|/
* Merge pull request #30126 from chopraanmol1/support_for_has_many_and_has_one_...Rafael França2017-08-111-2/+2
|\
| * Changed join_fk private method to join_foreign_key public methodchopraanmol12017-08-091-1/+1
| * Currently if relation object are passed to where condition for has one or has...chopraanmol12017-08-081-2/+2
* | Merge pull request #29720 from gaurish/ar_find_error_message_improvementRafael França2017-08-111-3/+3
|\ \ | |/ |/|
| * Return Not found Ids in ActiveRecord::NotFoundGaurish Sharma2017-07-291-3/+3
* | Merge pull request #29914 from kamipo/relation_merger_should_not_fill_empty_v...Matthew Draper2017-08-022-19/+22
|\ \
| * | `get_value` and `set_value` in `Relation` are no longer used externallyRyuta Kamizono2017-07-251-9/+10
| * | `Relation::Merger` should not fill `values` with empty valuesRyuta Kamizono2017-07-251-10/+12
* | | Edits following the reviewsMaxime Lapointe2017-07-281-6/+8
* | | Avoid duplicate clauses when using #orMaxime Lapointe2017-07-251-9/+16
| |/ |/|
* | Merge pull request #29941 from kamipo/remove_single_element_array_preprocessSean Griffin2017-07-251-1/+1
|\ \
| * | Remove single element array preprocessRyuta Kamizono2017-07-261-1/+1
* | | Allow `Relation#or` to accept a relation with different `references`Sean Griffin2017-07-251-1/+2
|/ /
* | Merge pull request #29934 from kamipo/remove_join_informationSean Griffin2017-07-251-5/+2
|\ \
| * | Remove useless `JoinInformation`Ryuta Kamizono2017-07-251-5/+2
* | | Remove unused `queries_predicates`Ryuta Kamizono2017-07-251-12/+0
|/ /
* | Merge pull request #29848 from kamipo/fix_distinct_count_with_order_and_limitRafael França2017-07-241-10/+19
|\ \ | |/ |/|
| * Should keep the table name qualified `*` for distinct subqueryRyuta Kamizono2017-07-221-1/+1
| * Fix `COUNT(DISTINCT ...)` with `ORDER BY` and `LIMIT`Ryuta Kamizono2017-07-221-10/+19
* | Fix build failures on PGSean Griffin2017-07-241-0/+4
* | Refactor Active Record to let Arel manage bind paramsSean Griffin2017-07-2412-231/+109
|/
* Use frozen-string-literal in ActiveRecordKir Shatrov2017-07-1921-0/+42
* Merge branch 'master' into fix_unscope_where_column_with_orSean Griffin2017-07-184-14/+14
|\
| * Fix `JoinDependency` with using a custom tableRyuta Kamizono2017-07-183-7/+6
| * Fix `where` with a custom tableRyuta Kamizono2017-07-181-1/+1
| * Remove useless `arel_engine`Ryuta Kamizono2017-07-171-1/+1
| * Fix code formatting for QueryMethods#selectRobin Dupret2017-07-161-2/+3