aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorjoker1007 <kakyoin.hierophant@gmail.com>2014-07-29 20:16:10 +0900
committerjoker1007 <kakyoin.hierophant@gmail.com>2014-08-01 00:29:20 +0900
commit1d6a87779c73bc7d9d5f235afadc0df4a36f534f (patch)
treeb7652dd8079e2481cd6ef9e172d41704797e6819 /activerecord/CHANGELOG.md
parent84093c662770893ad840c36f2b99204593d4a7de (diff)
downloadrails-1d6a87779c73bc7d9d5f235afadc0df4a36f534f.tar.gz
rails-1d6a87779c73bc7d9d5f235afadc0df4a36f534f.tar.bz2
rails-1d6a87779c73bc7d9d5f235afadc0df4a36f534f.zip
Fix type casting to Decimal from Float with ...
When I defines large precision column at RDBMS, I assigns float value, raise ArgumentError (precision too large).
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index b679d64472..252532c768 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,7 @@
+* Fix Type casting to Decimal from Float with large precision.
+
+ *Tomohiro Hashidate*
+
* No verbose backtrace by db:drop when database does not exist.
Fixes #16295.