aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2015-03-24 08:00:59 -0300
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2015-03-24 08:00:59 -0300
commitbfd5bf8313e6ea0bb2eccb68ee5076bb63f0b2db (patch)
tree132b23f4cab25c3571cb5528e4f3a04e72f9964d /activerecord/CHANGELOG.md
parent6a02efcfe560397a58fec53bd4ce177476f9cca7 (diff)
parentba057a5ebbf93283fc7d3f3f3ffdbae2f8c76fb7 (diff)
downloadrails-bfd5bf8313e6ea0bb2eccb68ee5076bb63f0b2db.tar.gz
rails-bfd5bf8313e6ea0bb2eccb68ee5076bb63f0b2db.tar.bz2
rails-bfd5bf8313e6ea0bb2eccb68ee5076bb63f0b2db.zip
Merge pull request #19452 from pinglamb/fix-referencing-wrong-alias-when-joining-tables-of-has-many-through-association
Fix referencing wrong aliases while joining tables of has many through association
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 7b34cb8ccd..accf356a0c 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,10 @@
+* Fix referencing wrong table aliases while joining tables of has many through
+ association (only when calling calculation methods).
+
+ Fixes #19276.
+
+ *pinglamb*
+
* Correctly persist a serialized attribute that has been returned to
its default value by an in-place modification.