aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorkennyj <kennyj@gmail.com>2012-09-16 10:43:30 +0900
committerkennyj <kennyj@gmail.com>2012-09-17 00:22:34 +0900
commit5bb056d268c9fc8c08c04ef04aef0c499b08a12c (patch)
treedcf5a5ca4516a996bb5b78bd4d79b66ba3aeae9e /activerecord/CHANGELOG.md
parent761bc751d31c22e2c2fdae2b4cdd435b68b6d783 (diff)
downloadrails-5bb056d268c9fc8c08c04ef04aef0c499b08a12c.tar.gz
rails-5bb056d268c9fc8c08c04ef04aef0c499b08a12c.tar.bz2
rails-5bb056d268c9fc8c08c04ef04aef0c499b08a12c.zip
Don't explain except normal CRUD sql.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 71dc960309..a4ba956477 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,10 @@
## Rails 4.0.0 (unreleased) ##
+* Explain only normal CRUD sql (select / update / insert / delete).
+ Fix problem that explains unexplainable sql. Closes #7544 #6458.
+
+ *kennyj*
+
* Fix `find_in_batches` when primary_key is set other than id.
You can now use this method with the primary key which is not integer-based.