{% extends "base.html" %} {% block contents %}
Home » {{ db.db_name }} » {{ tbl_name }}
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 }} |
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 |
{{ create_table_sql }}
{% endblock %}