Module: ROM::Plugins::Relation::SQL::Postgres::Explain

Defined in:
lib/rom/plugins/relation/sql/postgres/explain.rb

Overview

PG-specific extensions which adds Relation#explain method

Instance Method Summary collapse

Instance Method Details

#explain(format: :text, **options) ⇒ Hash, String

Show the execution plan One of four different output formats are supported: plain text, XML, JSON, YAML JSON format will be parsed and unwrapped automatically, plan in other formats will be returned as a plain string. Other options will be transparently added to the statement.

Examples:

users.by_pk(1).explain(analyze: true, timing: false) # => Plan output

Parameters:

  • :format (Hash)

    a customizable set of options

Returns:

  • (Hash, String)

See Also:



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/rom/plugins/relation/sql/postgres/explain.rb', line 28

def explain(format: :text, **options)
  bool_options = options.map { |opt, value| "#{opt.to_s.upcase} #{!!value}" }
  format_option = "FORMAT #{format.to_s.upcase}"
  explain_value = [format_option, *bool_options].join(", ")

  query = "EXPLAIN (#{explain_value}) #{dataset.sql}"

  rows = dataset.with_sql(query).map(:"QUERY PLAN")

  case format
  when :json
    rows[0][0]["Plan"]
  else
    rows.join("\n")
  end
end