{% comment %}Query EXPLAIN result fragment (B2), loaded on demand into the detail panel.{% endcomment %} {% if error %}
{{ error }}
{% elif result.error %}
{{ result.error }}
{% elif not result.supported %}
EXPLAIN not supported for this database.
{% else %}
{{ result.vendor }} {% if result.analyze %}ANALYZE{% endif %}
{% for line in result.plan %}{{ line }}
{% endfor %}
{% endif %}