{% extends "workspace_layout.html" %} {% block sidebar %} {% if schema == 'system' and table in ['traces', 'logs', 'cron_runs', 'table_stats', 'column_stats', 'metrics'] %} Loading... {% elif schema == 'system' or schema == 'interface' %} Loading... {% else %} Loading... {% endif %} {% endblock %} {% block content %}

{{ table }}

{{ schema }}
schema
{% if error %}
{% else %}
{% for col in columns %} {% endfor %} {% for row in rows %} {% for col in columns %} {% endfor %} {% endfor %} {% if rows|length == 0 %} {% endif %}
{{ col }}
{% if row[col] is defined %} {% if table == 'traces' and col == 'trace_id' %} {{ row[col] }} {% elif table in ['procedures', 'functions'] and col == 'name' %} {{ row[col] }} {% else %} {{ row[col] }} {% endif %} {% else %} null {% endif %}

No data available

This table is currently empty.

Showing {{ rows|length }} rows {% if rows|length == 100 %}(limit reached){% endif %}
{% endif %}
{% endblock %}