aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/explain_subscriber.rb
diff options
context:
space:
mode:
authorVladimir Kochnev <hashtable@yandex.ru>2015-04-21 16:45:21 +0300
committerVladimir Kochnev <hashtable@yandex.ru>2015-05-28 14:10:09 +0300
commitacdb006ad0e3926702e9df13effd4577db4dd0ad (patch)
tree565b5eb9f84b5cf8936d4eaad4989e1a896be6c8 /activerecord/lib/active_record/explain_subscriber.rb
parent207f8fc7debec1e9173f797e5208527e97235af3 (diff)
downloadrails-acdb006ad0e3926702e9df13effd4577db4dd0ad.tar.gz
rails-acdb006ad0e3926702e9df13effd4577db4dd0ad.tar.bz2
rails-acdb006ad0e3926702e9df13effd4577db4dd0ad.zip
Let WITH (CTE) queries be explainable
Diffstat (limited to 'activerecord/lib/active_record/explain_subscriber.rb')
-rw-r--r--activerecord/lib/active_record/explain_subscriber.rb2
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 6a49936644..9adabd7819 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)\b/i
+ EXPLAINED_SQLS = /\A\s*(with|select|update|delete|insert)\b/i
def ignore_payload?(payload)
payload[:exception] || IGNORED_PAYLOADS.include?(payload[:name]) || payload[:sql] !~ EXPLAINED_SQLS
end