aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorJeremy Daer <jeremydaer@gmail.com>2016-04-23 22:27:47 -0700
committerJeremy Daer <jeremydaer@gmail.com>2016-04-23 22:28:52 -0700
commitab56c92f3c2d0c483f3b6e49cc661051f9e266e0 (patch)
tree3837782016050bfeb0c13e716cc96debc659f92c /activerecord/CHANGELOG.md
parent65d743904c7bff520cecc864f5c9354c324e8b7b (diff)
parent3f6574efb1757e2eeebb7b960055a07aea93d144 (diff)
downloadrails-ab56c92f3c2d0c483f3b6e49cc661051f9e266e0.tar.gz
rails-ab56c92f3c2d0c483f3b6e49cc661051f9e266e0.tar.bz2
rails-ab56c92f3c2d0c483f3b6e49cc661051f9e266e0.zip
Merge pull request #23461 from kamipo/prepared_statements_for_mysql2_adapter
Add prepared statements support for `Mysql2Adapter`
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 2a9694080e..2de1fc9253 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,10 @@
+* MySQL: Prepared statements support.
+
+ To enable, set `prepared_statements: true` in config/database.yml.
+ Requires mysql2 0.4.4+.
+
+ *Ryuta Kamizono*
+
* Schema dumper: Indexes are now included in the `create_table` block
instead of listed afterward as separate `add_index` lines.