aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorJeremy Daer <jeremydaer@gmail.com>2016-04-15 10:02:33 -0700
committerJeremy Daer <jeremydaer@gmail.com>2016-04-15 10:02:33 -0700
commitf885587cc785cc634d11e547b5137c9895b847e7 (patch)
treedccbdcbe694475d55aad2a2d80b7de8d99375b2f /activerecord
parent92182d0d5b3393a7bd6bcf8cbdb115d8d1b5c09f (diff)
parent65a7e90cc1f445036c50687b23597fb2ce3d9a38 (diff)
downloadrails-f885587cc785cc634d11e547b5137c9895b847e7.tar.gz
rails-f885587cc785cc634d11e547b5137c9895b847e7.tar.bz2
rails-f885587cc785cc634d11e547b5137c9895b847e7.zip
Merge pull request #24556 from vipulnsward/24542-changelog
Add changelog for #24542
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 0e831bfb66..e6cbd6bd68 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,9 @@
+* Add `quoted_time` for truncating the date part of a TIME column value.
+ This fixes queries on TIME column on MariaDB, as it doesn't ignore the
+ date part of the string when it coerces to time.
+
+ *Ryuta Kamizono*
+
* Properly accept all valid JSON primitives in the JSON data type.
Fixes #24234