{% if error %}

Error loading table

{{ error }}

{% elif table %}

{{ table.name }}

{{ table.namespace | join('.') }}

Location
{{ table.location }}
Format
{{ table.format }}
Partitioning
{% if table.partition_columns %}
{% for col in table.partition_columns %} {{ col }} {% endfor %}
{% else %} Not partitioned {% endif %}
Columns
{{ table.columns | length }}
Snapshots
{{ table.snapshots | length }}
{% if table.current_snapshot %}
Current Snapshot
{{ table.current_snapshot.snapshot_id }}
{% endif %}
{% for col in table.columns %} {% endfor %}
Column Type Nullable
{{ col.name }} {% if col.is_partition %} Partition {% endif %} {{ col.type }} {% if col.nullable %} Yes {% else %} No {% endif %}

SQL Query Editor

Query Error

Status:

Results

Page of

Streaming results... rows received

Query completed in s

rows returned

{% if table.snapshots %}
{% for snap in table.snapshots | reverse %} {% endfor %}
Sequence Snapshot ID Timestamp
{{ snap.sequence_number }} {% if loop.first %} Current {% endif %} {{ snap.snapshot_id }} {{ snap.timestamp_ms }}
{% else %}

No snapshots available

{% endif %}
{% else %}

Select a table

Browse namespaces in the sidebar and click on a table to view its details.

{% endif %}