aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorCody Cutrer <cody@instructure.com>2013-12-13 15:20:03 -0700
committerCody Cutrer <cody@cutrer.us>2013-12-14 07:07:10 -0700
commit75a2e4a8dff8c01dad913048d3676b993a8e23a2 (patch)
tree1cea1a48cc5d501f5146c392d5fa8d05c71b8637 /activerecord/CHANGELOG.md
parent068580d4456e881e568de4a4d20a401e87b6c9e1 (diff)
downloadrails-75a2e4a8dff8c01dad913048d3676b993a8e23a2.tar.gz
rails-75a2e4a8dff8c01dad913048d3676b993a8e23a2.tar.bz2
rails-75a2e4a8dff8c01dad913048d3676b993a8e23a2.zip
support creating temporary tables from queries
also override drop_table in AbstractMySQLAdapter to properly drop temporary tables without committing the transaction
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 4845150a24..fc868ecaea 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,13 @@
+* Respect temporary option when dropping tables with MySQL
+
+ Normal DROP TABLE also works, but commits the transaction.
+
+ *Cody Cutrer*
+
+* Add option to create tables from a query.
+
+ *Cody Cutrer*
+
* Create a whitelist of delegable methods to `Array`.
Currently `Relation` directly delegates methods to `Array`. With this change,