Sha256: 559f7380cb2a237e32b2bac07377b26fa27f7c4b16633c9503edb26609b3d1b4
Contents?: true
Size: 1.22 KB
Versions: 1
Compression:
Stored size: 1.22 KB
Contents
<div class="content"> <h1>Explain</h1> <%= form_tag explain_path do %> <%= text_area_tag :query, @query, placeholder: "Enter a SQL query" %> <p> <%= submit_tag "Explain", class: "btn btn-info", style: "margin-right: 10px;" %> <%= submit_tag "Analyze", class: "btn btn-danger", style: "margin-right: 10px;" %> <%= submit_tag "Visualize", class: "btn btn-danger" %> </p> <% end %> <% if @explanation %> <% if @visualize %> <p>Paste the output below into the <%= link_to "Postgres Explain Visualizer", "http://tatiyants.com/pev/#/plans/new", target: "_blank" %></p> <% end %> <pre><%= @explanation %></pre> <% unless @visualize %> <p><%= link_to "See how to interpret this", "http://www.postgresql.org/docs/current/static/using-explain.html", target: "_blank" %></p> <% end %> <% if (index = @suggested_index) %> <%= render partial: "suggested_index", locals: {index: index, details: index[:details]} %> <% end %> <% elsif @error %> <div class="alert alert-danger"><%= @error %></div> <% else %> <p class="text-muted">Note: The analyze and visualize buttons can add load to your database for long running queries, so be careful.</p> <% end %> </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pghero-1.6.3 | app/views/pg_hero/home/explain.html.erb |