diff options
author | Xavier Noria <fxn@hashref.com> | 2013-05-10 07:35:41 -0700 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2013-05-10 07:35:41 -0700 |
commit | 7d74a3187d49dc4773c0aae8961a21f49cd480ab (patch) | |
tree | b0180866fbdf5a6b302cf1e869f6b65f8a4ac6de /activerecord/lib | |
parent | 04d27153fcefaea380fce63e4c9d6e65b27d78b2 (diff) | |
parent | 1cc63e94dbe52a9cf01a71c1dc45ee18443f97dc (diff) | |
download | rails-7d74a3187d49dc4773c0aae8961a21f49cd480ab.tar.gz rails-7d74a3187d49dc4773c0aae8961a21f49cd480ab.tar.bz2 rails-7d74a3187d49dc4773c0aae8961a21f49cd480ab.zip |
Merge pull request #10553 from dasch/dasch/dont-try-to-explain-select_db
Don't try to EXPLAIN select_db calls
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/explain_subscriber.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/explain_subscriber.rb b/activerecord/lib/active_record/explain_subscriber.rb index a3bc56d600..6a49936644 100644 --- a/activerecord/lib/active_record/explain_subscriber.rb +++ b/activerecord/lib/active_record/explain_subscriber.rb @@ -19,7 +19,7 @@ module ActiveRecord # On the other hand, we want to monitor the performance of our real database # queries, not the performance of the access to the query cache. IGNORED_PAYLOADS = %w(SCHEMA EXPLAIN CACHE) - EXPLAINED_SQLS = /\A\s*(select|update|delete|insert)/i + EXPLAINED_SQLS = /\A\s*(select|update|delete|insert)\b/i def ignore_payload?(payload) payload[:exception] || IGNORED_PAYLOADS.include?(payload[:name]) || payload[:sql] !~ EXPLAINED_SQLS end |