Tables ({{ total_tables }})
{% if namespaces|length == 0 %}📂
No tables found
Add datasets using faceberg add
{% for namespace in namespaces %}
{% for table in namespace.tables %}
{% endfor %}
{% endfor %}
{% endif %}
{{ namespace.name }}.{{ table.name }} {{ table.row_count }} rows
Rows:
{{ table.row_count }}
Files:
{{ table.file_count }}
Cols:
{{ table.columns|length }}
{% if table.dataset_repo %}
{% endif %}
Schema
| Column | Type | Req |
|---|---|---|
| {{ col.name }} | {{ col.type }} | {% if col.required %} ✓ {% else %} - {% endif %} |
💡 DuckDB Shell • Extensions:
iceberg
httpfs
{% if namespaces|length > 0 %}
• Example:
{% set first_ns = namespaces[0] %}{% set first_table = first_ns.tables[0] %}SELECT * FROM catalog.{{ first_ns.name }}.{{ first_table.name }} LIMIT 10;
{% endif %}