aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/explain_subscriber.rb
blob: fc7641049928861a9afd8714268c84e677dd8ac3 (plain) (tree)
1
2
3
4
5
                                      
 
                   
                                   
                   










                                                                                  

       
                                                                    

     
require 'active_support/notifications'

module ActiveRecord
  class ExplainSubscriber # :nodoc:
    def call(*args)
      if queries = Thread.current[:available_queries_for_explain]
        payload = args.last
        queries << payload.values_at(:sql, :binds) unless ignore_payload?(payload)
      end
    end

    # SCHEMA queries cannot be EXPLAINed, also we do not want to run EXPLAIN on
    # our own EXPLAINs now matter how loopingly beautiful that would be.
    IGNORED_PAYLOADS = %w(SCHEMA EXPLAIN)
    def ignore_payload?(payload)
      payload[:exception] || IGNORED_PAYLOADS.include?(payload[:name])
    end

    ActiveSupport::Notifications.subscribe("sql.active_record", new)
  end
end