method

build_explain_clause

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: DatabaseStatements
build_explain_clause(options = []) public

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/connection_adapters/postgresql/database_statements.rb, line 132
        def build_explain_clause(options = [])
          return "EXPLAIN" if options.empty?

          "EXPLAIN (#{options.join(", ").upcase})"
        end
Register or log in to add new notes.