{% if showtable['Row_format'] is defined %} {% if showtable['Row_format'] == 'Fixed' %} {% elseif showtable['Row_format'] == 'Dynamic' %} {% else %} {% endif %} {% endif %} {% if showtable['Create_options'] is not empty %} {% if showtable['Create_options'] == 'partitioned' %} {% else %} {% endif %} {% endif %} {% if tbl_collation is not empty %} {% endif %} {% if not is_innodb and showtable['Rows'] is defined %} {% endif %} {% if not is_innodb and showtable['Avg_row_length'] is defined and showtable['Avg_row_length'] > 0 %} {% set avg_row_length = Util_formatByteDown(showtable['Avg_row_length'], 6, 1) %} {% endif %} {% if not is_innodb and showtable['Data_length'] is defined and showtable['Rows'] is defined and showtable['Rows'] > 0 and mergetable == false %} {% endif %} {% if showtable['Auto_increment'] is defined %} {% endif %} {% if showtable['Create_time'] is defined %} {% endif %} {% if showtable['Update_time'] is defined %} {% endif %} {% if showtable['Check_time'] is defined %} {% endif %}
{% trans 'Row statistics' %}
{% trans 'Format' %}{% trans 'static' %}{% trans 'dynamic' %}{{ showtable['Row_format'] }}
{% trans 'Options' %}{% trans 'partitioned' %}{{ showtable['Create_options'] }}
{% trans 'Collation' %} {{ tbl_collation }}
{% trans 'Rows' %} {{ Util_formatNumber(showtable['Rows'], 0) }}
{% trans 'Row length' %}{{ avg_row_length[0] }} {{ avg_row_length[1] }}
{% trans 'Row size' %} {{ avg_size }} {{ avg_unit }}
{% trans 'Next autoindex' %} {{ Util_formatNumber(showtable['Auto_increment'], 0) }}
{% trans 'Creation' %} {{ Util_localisedDate(showtable['Create_time']|date('U')) }}
{% trans 'Last update' %} {{ Util_localisedDate(showtable['Update_time']|date('U')) }}
{% trans 'Last check' %} {{ Util_localisedDate(showtable['Check_time']|date('U')) }}