method

build_explain_clause

Importance_0
v7.2.3 - Show latest stable - 0 notes - Class: Explain
build_explain_clause(connection, options = []) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/explain.rb, line 55
      def build_explain_clause(connection, options = [])
        if connection.respond_to?(:build_explain_clause, true)
          connection.build_explain_clause(options)
        else
          "EXPLAIN for:"
        end
      end
Register or log in to add new notes.