blob: f5cd57e075162b21f4e636c86b53aa5982b493e4 (
plain) (
tree)
|
|
require 'active_support/per_thread_registry'
module ActiveRecord
# This is a thread locals registry for EXPLAIN. For example
#
# ActiveRecord::ExplainRegistry.queries
#
# returns the collected queries local to the current thread.
#
# See the documentation of <tt>ActiveSupport::PerThreadRegistry</tt>
# for further details.
class ExplainRegistry # :nodoc:
extend ActiveSupport::PerThreadRegistry
attr_accessor :queries, :collect
def initialize
reset
end
def collect?
@collect
end
def reset
@collect = false
@queries = []
end
end
end
|