{% extends 'metastore_browser/base.html' %} {% block plugin_content %}

Table: {{ table.dbName }}.{{ table.tableName }}

{%for col in table.partitionKeys %} {% endfor %} {%for col in table.sd.cols %} {% endfor %}
Column Type Comment
{{ col.name }} (PARTITION) {{ col.type }} {{ col.comment or '' }}
{{ col.name }} {{ col.type }} {{ col.comment or '' }}
{%for k, v in table.__dict__.items() %} {% if v and k not in ('sd', 'partitionKeys', 'tableName', 'parameters') %} {% if k.endswith('Time') %} {% else %} {% endif %} {% endif %} {% endfor %}
Attribute Value
{{ k }}{{ datetime.fromtimestamp(int(v)).isoformat() }}{{ v }}
{%for k, v in table.parameters.items() %} {% if v and k not in [] %} {% if k.endswith('Time') %} {% else %} {% endif %} {% endif %} {% endfor %}
Parameter Value
{{ k }}{{ datetime.fromtimestamp(int(v)).isoformat() }}{{ v }}
        
      
{% endblock %} {% block tail %} {{ super() }} {% endblock %}