{% extends "base.html" %} {% block contents %}

Home » {{ db.db_name }} » {{ tbl_name }}

{{ tbl_name }}

Details

{% if tbl_info.total_rows %} {% endif %}
Total rows {{ "{:,}".format(tbl_info.total_rows) }}
Total size {{ tbl_info.total_bytes|filesizeformat(true) }}
Average row size {{ (tbl_info.total_bytes / tbl_info.total_rows)|filesizeformat(true) }}
Engine {{ tbl_info.engine }}

Top Columns by Size

{% autoescape false %} {{ piechart }} {% endautoescape %}

Columns ({{ columns.count() }})

{% for col in columns %} {% endfor %}
Name Type Uncompressed Size Compressed Size Compression Ratio
{{ col.name }} {{ col.type }} {{ col.data_uncompressed_bytes|filesizeformat(true) }} {{ col.data_compressed_bytes|filesizeformat(true) }} {% if col.data_compressed_bytes %} {{ "%.2f" % (col.data_uncompressed_bytes / col.data_compressed_bytes) }} {% else %} 1 {% endif %} : 1

Table Definition

{{ create_table_sql }}
{% endblock %}